[sm130futures] Remove constructor hiding warning.

We had a struct called "Theme" that was throwing things off.
This commit is contained in:
Jason Felds
2011-05-04 17:24:03 -04:00
parent 1e6a4d4ef0
commit 4e8b475377
+2 -2
View File
@@ -264,7 +264,7 @@ static void DisplayResolutionChoices( vector<RString> &out )
}
}
static void Theme( int &sel, bool ToSel, const ConfOption *pConfOption )
static void RequestedTheme( int &sel, bool ToSel, const ConfOption *pConfOption )
{
vector<RString> choices;
pConfOption->MakeOptionsList( choices );
@@ -653,7 +653,7 @@ static void InitializeConfOptions()
// Appearance options
ADD( ConfOption( "Language", Language, LanguageChoices ) );
ADD( ConfOption( "Theme", Theme, ThemeChoices ) );
ADD( ConfOption( "Theme", RequestedTheme, ThemeChoices ) );
g_ConfOptions.back().m_iEffects = OPT_APPLY_THEME;
ADD( ConfOption( "Announcer", Announcer, AnnouncerChoices ) );