Fix type comparison warning

This commit is contained in:
Seth Hillbrand 2018-03-02 17:07:20 -08:00
parent 8e1d397587
commit e6245c5c5a
1 changed files with 1 additions and 1 deletions

View File

@ -323,7 +323,7 @@ public:
if( aValue ) // select all indices
{
for( unsigned int i = 0; i < m_optionsCount; ++i )
for( int i = 0; i < m_optionsCount; ++i )
selIdxs.Add( i );
}