Fix: change operand order to utilize VC 6 hack

This commit is contained in:
Charles Lohr
2005-03-25 22:46:12 +00:00
parent a16db4edaa
commit 424b831b9a
+1 -1
View File
@@ -43,7 +43,7 @@ void OptionRow::PrepareItemText( CString &s ) const
// HACK: Always theme the NEXT_ROW and EXIT items, even if metrics says not to theme.
if( s == NEXT_ROW_NAME ) bTheme = true;
if( s == EXIT_NAME ) bTheme = true;
if( m_RowDef.m_bAllowThemeItems && THEME_ITEMS ) bTheme = true;
if( THEME_ITEMS && m_RowDef.m_bAllowThemeItems ) bTheme = true;
if( bTheme )
s = THEME_OPTION_ITEM( s, false );