mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-05 20:00:31 +02:00
indentation fixes
This commit is contained in:
parent
c786789c4c
commit
252086ea48
2 changed files with 4 additions and 4 deletions
|
@ -117,9 +117,9 @@ AppDelegate::AppDelegate(int argc, char* argv[]) :
|
||||||
|
|
||||||
connect(this, &QApplication::aboutToQuit, this, &AppDelegate::stopStack);
|
connect(this, &QApplication::aboutToQuit, this, &AppDelegate::stopStack);
|
||||||
|
|
||||||
_window->setRequirementsLastChecked(QDateTime::currentDateTime().toString());
|
_window->setRequirementsLastChecked(QDateTime::currentDateTime().toString());
|
||||||
_window->show();
|
_window->show();
|
||||||
toggleStack(true);
|
toggleStack(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
AppDelegate::~AppDelegate() {
|
AppDelegate::~AppDelegate() {
|
||||||
|
|
|
@ -32,7 +32,7 @@ GlobalData::GlobalData() {
|
||||||
_resourcePath = "resources/";
|
_resourcePath = "resources/";
|
||||||
_assignmentClientExecutable = "assignment-client";
|
_assignmentClientExecutable = "assignment-client";
|
||||||
_domainServerExecutable = "domain-server";
|
_domainServerExecutable = "domain-server";
|
||||||
QString applicationSupportDirectory = QCoreApplication::applicationDirPath();
|
QString applicationSupportDirectory = QCoreApplication::applicationDirPath();
|
||||||
|
|
||||||
_clientsLaunchPath = QDir::toNativeSeparators(applicationSupportDirectory + "/");
|
_clientsLaunchPath = QDir::toNativeSeparators(applicationSupportDirectory + "/");
|
||||||
_clientsResourcePath = QDir::toNativeSeparators(applicationSupportDirectory + "/" + _resourcePath);
|
_clientsResourcePath = QDir::toNativeSeparators(applicationSupportDirectory + "/" + _resourcePath);
|
||||||
|
|
Loading…
Reference in a new issue