Add temp debugging.

This commit is contained in:
Steve Checkoway
2008-10-06 07:27:58 +00:00
parent d8045f0994
commit 28730a1f3f
+6 -2
View File
@@ -77,8 +77,12 @@ RString OptionRowHandler::GetThemedItemText( int iChoice ) const
bTheme = false;
}
if( bTheme )
s = CommonMetrics::LocalizeOptionItem( s, false );
if( bTheme )
{
LOG->MapLog( "OptionRowHandler::GetThemedItemText", "choice %d: %s", iChoice, s.c_str() );
s = CommonMetrics::LocalizeOptionItem( s, false );
LOG->UnmapLog( "OptionRowHandler::GetThemedItemText" );
}
return s;
}