Fix a minor compil warning

This commit is contained in:
jean-pierre charras 2021-04-15 19:47:06 +02:00
parent 1fc1286180
commit 31e9895a1a
1 changed files with 1 additions and 1 deletions

View File

@ -1302,7 +1302,7 @@ void CADSTAR_SCH_ARCHIVE_LOADER::loadSymDefIntoLibrary( const SYMDEF_ID& aSymdef
wxStringSplit( csText.Text, strings, '\n' );
wxPoint firstLinePos;
for( int ii = 0; ii < strings.size(); ++ii )
for( size_t ii = 0; ii < strings.size(); ++ii )
{
EDA_RECT bbox = libtext->GetTextBox( ii, true );
wxPoint linePos = { bbox.GetLeft(), -bbox.GetBottom() };