...why is this in a header file?

This commit is contained in:
Jason Felds
2013-05-01 23:25:04 -04:00
parent f4bd0a879d
commit d225713f3d
+2 -2
View File
@@ -57,9 +57,9 @@ struct MenuRowDef
emShowIn(s), iDefaultChoice(d), choices(),
bThemeTitle(bTT), bThemeItems(bTI)
{
FOREACH(RString, options, str)
for (RString &str : options)
{
if (*str != "") choices.push_back(*str);
if (str != "") choices.push_back(str);
}
}