Commit 50f5eb37 authored by charras's avatar charras

fixed wxWidget 2.9 compatibility problem.

parent e5bfcbbd
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
DESTINATION ${KICAD_DEMOS}
COMPONENT resources
......
......@@ -434,14 +434,14 @@ bool SCH_FIELD::Matches( wxFindReplaceData& aSearchData, void * aAuxData )
int part_id = pSch->GetUnitSelection( sheet );
#if defined(KICAD_GOST)
fulltext.Append( '.' );
part_id = '1' - 1 + part_id;
part_id += '1' - 1;
#else
part_id = 'A' - 1 + part_id;
part_id += 'A' - 1;
#endif
fulltext.Append( part_id );
fulltext.Append( (char)part_id );
}
return SCH_ITEM::Matches( fulltext, aSearchData );
}
return SCH_ITEM::Matches( m_Text, aSearchData );
}
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