fixed wxWidget 2.9 compatibility problem.
This commit is contained in:
parent
e5bfcbbd91
commit
50f5eb371b
|
@ -1,4 +1,4 @@
|
||||||
install(DIRECTORY ecc83 electric flat_hierarchy interf_u microwave
|
install(DIRECTORY complex_hierarchy ecc83 electric flat_hierarchy interf_u microwave
|
||||||
pic_programmer pspice "sonde xilinx" test_xil_95108 video
|
pic_programmer pspice "sonde xilinx" test_xil_95108 video
|
||||||
DESTINATION ${KICAD_DEMOS}
|
DESTINATION ${KICAD_DEMOS}
|
||||||
COMPONENT resources
|
COMPONENT resources
|
||||||
|
|
|
@ -434,11 +434,11 @@ bool SCH_FIELD::Matches( wxFindReplaceData& aSearchData, void * aAuxData )
|
||||||
int part_id = pSch->GetUnitSelection( sheet );
|
int part_id = pSch->GetUnitSelection( sheet );
|
||||||
#if defined(KICAD_GOST)
|
#if defined(KICAD_GOST)
|
||||||
fulltext.Append( '.' );
|
fulltext.Append( '.' );
|
||||||
part_id = '1' - 1 + part_id;
|
part_id += '1' - 1;
|
||||||
#else
|
#else
|
||||||
part_id = 'A' - 1 + part_id;
|
part_id += 'A' - 1;
|
||||||
#endif
|
#endif
|
||||||
fulltext.Append( part_id );
|
fulltext.Append( (char)part_id );
|
||||||
}
|
}
|
||||||
return SCH_ITEM::Matches( fulltext, aSearchData );
|
return SCH_ITEM::Matches( fulltext, aSearchData );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue