more cleanups (lint lint lint)

This commit is contained in:
Glenn Maynard
2002-11-16 09:12:55 +00:00
parent 551f5adb16
commit 23254cdd4a
16 changed files with 46 additions and 41 deletions
+3 -3
View File
@@ -23,7 +23,7 @@
OptionIconRow::OptionIconRow()
{
for( int i=0; i<NUM_OPTION_COLS; i++ )
for( unsigned i=0; i<NUM_OPTION_COLS; i++ )
{
m_OptionIcon[i].SetXY( i*SPACING_X, i*SPACING_Y );
this->AddChild( &m_OptionIcon[i] );
@@ -107,7 +107,7 @@ void OptionIconRow::Refresh( PlayerNumber pn )
continue; // skip
// search for a vacant spot
for( int i=iPerferredCol; i<NUM_OPTION_COLS-1; i++ )
for( unsigned i=iPerferredCol; i<NUM_OPTION_COLS-1; i++ )
{
if( asTabs[i] != "" )
continue;
@@ -126,4 +126,4 @@ void OptionIconRow::Refresh( PlayerNumber pn )
void OptionIconRow::DrawPrimitives()
{
ActorFrame::DrawPrimitives();
}
}