More wide-string declarations.

This commit is contained in:
Jeff Young
2022-02-05 22:03:04 +00:00
parent f8ff104003
commit b2e3f03222
45 changed files with 662 additions and 639 deletions
+3 -3
View File
@@ -148,16 +148,16 @@ void pcbnewGetWizardsBackTrace( wxString& aTrace )
for( unsigned ii = 0; ii < traces.Count(); ++ii )
{
if( traces[ii].Contains( "Traceback" ) )
if( traces[ii].Contains( wxT( "Traceback" ) ) )
{
ii += 2; // Skip this line and next lines which are related to pcbnew.py module
if( !aTrace.IsEmpty() ) // Add separator for the next trace block
aTrace << "\n**********************************\n";
aTrace << wxT( "\n**********************************\n" );
}
else
{
aTrace += traces[ii] + "\n";
aTrace += traces[ii] + wxT( "\n" );
}
}
}