mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-07 12:12:39 +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());
|
||||
return;
|
||||
}
|
||||
auto root = doc.object();
|
||||
auto data = root["data"];
|
||||
auto data = doc["data"];
|
||||
auto error = data["error"];
|
||||
auto oculusError = data["oculus"];
|
||||
auto user = error["username"].toArray();
|
||||
|
|
|
@ -24,7 +24,7 @@ OculusAPIPlugin::~OculusAPIPlugin() {
|
|||
hifi::ovr::releaseRenderSession(_session);
|
||||
}
|
||||
|
||||
bool OculusAPIPlugin::isRunning() {
|
||||
bool OculusAPIPlugin::isRunning() const {
|
||||
return (qApp->property(hifi::properties::OCULUS_STORE).toBool());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue