mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 23:57:13 +02:00
fixing compile errors
This commit is contained in:
parent
6f49914167
commit
1c6521486e
2 changed files with 2 additions and 3 deletions
|
@ -304,8 +304,7 @@ void LoginDialog::createFailed(QNetworkReply* reply) {
|
||||||
emit handleCreateFailed(reply->errorString());
|
emit handleCreateFailed(reply->errorString());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
auto root = doc.object();
|
auto data = doc["data"];
|
||||||
auto data = root["data"];
|
|
||||||
auto error = data["error"];
|
auto error = data["error"];
|
||||||
auto oculusError = data["oculus"];
|
auto oculusError = data["oculus"];
|
||||||
auto user = error["username"].toArray();
|
auto user = error["username"].toArray();
|
||||||
|
|
|
@ -24,7 +24,7 @@ OculusAPIPlugin::~OculusAPIPlugin() {
|
||||||
hifi::ovr::releaseRenderSession(_session);
|
hifi::ovr::releaseRenderSession(_session);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool OculusAPIPlugin::isRunning() {
|
bool OculusAPIPlugin::isRunning() const {
|
||||||
return (qApp->property(hifi::properties::OCULUS_STORE).toBool());
|
return (qApp->property(hifi::properties::OCULUS_STORE).toBool());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue