Qt: remove some warnings

This commit is contained in:
Unknown 2017-11-25 13:59:57 +01:00 committed by Ivan
parent 754cdea435
commit 2f7d621fc8
1 changed files with 2 additions and 2 deletions

View File

@ -268,10 +268,10 @@ void gui_settings::ShowInfoBox(const gui_save& entry, const QString& title, cons
if (mb->checkBox()->isChecked())
{
SetValue(entry, false);
LOG_WARNING(GENERAL, "Entry %s was set to false", sstr(entry.name));
LOG_NOTICE(GENERAL, "Info Box for Entry %s is now disabled", sstr(entry.name));
}
}
else LOG_WARNING(GENERAL, "Entry %s is false, Info Box not shown", sstr(entry.name));
else LOG_NOTICE(GENERAL, "Info Box for Entry %s was ignored", sstr(entry.name));
}
void gui_settings::SetGamelistColVisibility(int col, bool val)