indentation fixes

This commit is contained in:
Leonardo Murillo 2015-12-02 12:48:58 -06:00
parent c786789c4c
commit 252086ea48
2 changed files with 4 additions and 4 deletions

View file

@ -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() {

View file

@ -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);