mirror of
https://github.com/overte-org/overte.git
synced 2025-07-23 13:24:02 +02:00
more CR feedback
This commit is contained in:
parent
2abcc454b0
commit
e8af41c6ab
1 changed files with 1 additions and 2 deletions
|
@ -960,8 +960,7 @@ bool OctreeServer::readOptionInt64(const QString& optionName, const QJsonObject&
|
||||||
optionAvailable = true;
|
optionAvailable = true;
|
||||||
result = atoll(argValue);
|
result = atoll(argValue);
|
||||||
qDebug() << "From payload arguments: " << qPrintable(argName) << ":" << result;
|
qDebug() << "From payload arguments: " << qPrintable(argName) << ":" << result;
|
||||||
}
|
} else if (settingsSectionObject.contains(optionName)) {
|
||||||
else if (settingsSectionObject.contains(optionName)) {
|
|
||||||
optionAvailable = true;
|
optionAvailable = true;
|
||||||
result = settingsSectionObject[optionName].toString().toLongLong(&optionAvailable);
|
result = settingsSectionObject[optionName].toString().toLongLong(&optionAvailable);
|
||||||
if (optionAvailable) {
|
if (optionAvailable) {
|
||||||
|
|
Loading…
Reference in a new issue