mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 03:19:33 +02:00
fixing typos
This commit is contained in:
parent
816733b55f
commit
50902080ce
1 changed files with 2 additions and 4 deletions
|
@ -5273,11 +5273,9 @@ void Application::resumeAfterLoginDialogActionTaken() {
|
||||||
|
|
||||||
if (!accountManager->isLoggedIn()) {
|
if (!accountManager->isLoggedIn()) {
|
||||||
if (arguments().contains("--url")) {
|
if (arguments().contains("--url")) {
|
||||||
addressManager->goToEntry();
|
|
||||||
auto reply = SandboxUtils::getStatus();
|
auto reply = SandboxUtils::getStatus();
|
||||||
connect(reply, &QNetworkReply::finished, this, [this, reply] { handleSandboxStatus(reply); });
|
connect(reply, &QNetworkReply::finished, this, [this, reply] { handleSandboxStatus(reply); });
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
addressManager->goToEntry();
|
addressManager->goToEntry();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -5293,7 +5291,7 @@ void Application::resumeAfterLoginDialogActionTaken() {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
auto reply = SandboxUtils::getStatus();
|
auto reply = SandboxUtils::getStatus();
|
||||||
connect(reply, &QNetworkReply::finished, this, [this, reply] { handleSandboxStatus(reply); });;
|
connect(reply, &QNetworkReply::finished, this, [this, reply] { handleSandboxStatus(reply); });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue