Fix scan dirs settings saving. Closes #4254, #4239, #4187.

This commit is contained in:
Vladimir Golovnev (Glassez) 2015-12-05 17:48:57 +03:00
parent f4ef0633c9
commit 8014d74210
2 changed files with 3 additions and 3 deletions

View file

@ -465,7 +465,7 @@ QList<bool> Utils::Misc::boolListfromStringList(const QStringList &l)
{
QList<bool> ret;
foreach (const QString &s, l)
ret << (s=="1");
ret << (s == "1");
return ret;
}