Commit cddc8f36 authored by jean-pierre charras's avatar jean-pierre charras

fix wxWidgets 2.9 compatibility problem

parent 61cf3762
This diff is collapsed.
...@@ -241,7 +241,7 @@ wxString LIB_COMPONENT::ReturnSubReference( int aUnit ) ...@@ -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;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment