Pcbnew: fix Bug #1156193 . Fix compil issues when KICAD_SCRIPTING_WXPYTHON is not enabled and KICAD_SCRIPTING is enabled

This commit is contained in:
jean-pierre charras
2013-03-17 20:04:42 +01:00
parent f227383341
commit 3e8bd5592b
3 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -341,7 +341,7 @@ wxString PyErrStringWithTraceback()
wxArrayString res = PyArrayStringToWx( result );
for( int i = 0; i<res.Count(); i++ )
for( unsigned i = 0; i<res.Count(); i++ )
{
err += res[i] + wxT( "\n" );
}