fix wxWidgets 2.9 compatibility problem

This commit is contained in:
jean-pierre charras 2010-04-28 20:32:13 +02:00
parent 61cf376218
commit cddc8f3663
3 changed files with 2385 additions and 2231 deletions

File diff suppressed because it is too large Load Diff

View File

@ -241,7 +241,7 @@ wxString LIB_COMPONENT::ReturnSubReference( int aUnit )
#if defined(KICAD_GOST) #if defined(KICAD_GOST)
subRef.Printf( wxT(".%d" ), aUnit); subRef.Printf( wxT(".%d" ), aUnit);
#else #else
subRef.Append( aUnit + 'A' - 1 ); subRef.Append( wxChar(aUnit + 'A' - 1) );
#endif #endif
return subRef; return subRef;
} }