adjusted qstring to bool
This commit is contained in:
parent
e49d7b9743
commit
6820ca6296
|
|
@ -44,9 +44,9 @@ QVariant Settings::getDefaultValue(const QString& group, const QString& name)
|
|||
else if(group == "Log" && name == "backups")
|
||||
return 5;
|
||||
else if(group == "Log" && name == "consoleOutput")
|
||||
return "true";
|
||||
return false;
|
||||
else if(group == "Log" && name == "fileOutput")
|
||||
return "true";
|
||||
return true;
|
||||
else
|
||||
return QVariant();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue