Fix minor compil warnings

This commit is contained in:
jean-pierre charras 2023-06-03 18:08:58 +02:00
parent 95d104ab65
commit 92018f0066
2 changed files with 1 additions and 2 deletions

View File

@ -121,7 +121,6 @@ SYMBOL_SEARCH_HANDLER::SYMBOL_SEARCH_HANDLER( SCH_EDIT_FRAME* aFrame ) :
int SYMBOL_SEARCH_HANDLER::Search( const wxString& aQuery )
{
m_hitlist.clear();
SCHEMATIC& sch = m_frame->Schematic();
SCH_SEARCH_DATA frp;
frp.findString = aQuery;

View File

@ -106,7 +106,7 @@ bool KIPLATFORM::APP::Init()
wxLog::EnableLogging( true );
#ifndef DEBUG
wxLog::SetLogLevel( wxLOG_Trace );
#endif;
#endif
wxLog::SetActiveTarget( new wxLogStderr );
}