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 )
#if defined(KICAD_GOST)
subRef.Printf( wxT(".%d" ), aUnit);
#else
subRef.Append( aUnit + 'A' - 1 );
subRef.Append( wxChar(aUnit + 'A' - 1) );
#endif
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