diff options
author | Petr Mrázek <peterix@gmail.com> | 2015-12-27 03:34:03 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2015-12-27 03:34:03 +0100 |
commit | e8063d193d56acc10c5a533cffd95c9271b24e65 (patch) | |
tree | f7ba9783d4c3fd2667f095417bce50f22789970a /application/MultiMC.cpp | |
parent | 7670d72bd9c8bb2adcecd2d04413a2abb9ac174f (diff) | |
download | MultiMC-e8063d193d56acc10c5a533cffd95c9271b24e65.tar MultiMC-e8063d193d56acc10c5a533cffd95c9271b24e65.tar.gz MultiMC-e8063d193d56acc10c5a533cffd95c9271b24e65.tar.lz MultiMC-e8063d193d56acc10c5a533cffd95c9271b24e65.tar.xz MultiMC-e8063d193d56acc10c5a533cffd95c9271b24e65.zip |
GH-1308 remove use of static data (translations) and root (notifications.json) paths.
Diffstat (limited to 'application/MultiMC.cpp')
-rw-r--r-- | application/MultiMC.cpp | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/application/MultiMC.cpp b/application/MultiMC.cpp index 0cf6cf92..1c1fe835 100644 --- a/application/MultiMC.cpp +++ b/application/MultiMC.cpp @@ -126,6 +126,7 @@ MultiMC::MultiMC(int &argc, char **argv, bool test_mode) : QApplication(argc, ar QString origcwdPath = QDir::currentPath(); QString binPath = applicationDirPath(); QString adjustedBy; + QString dataPath; // change directory QString dirParam = args["dir"].toString(); if (!dirParam.isEmpty()) @@ -170,17 +171,6 @@ MultiMC::MultiMC(int &argc, char **argv, bool test_mode) : QApplication(argc, ar #endif } -// static data paths... mostly just for translations -#ifdef Q_OS_LINUX - QDir foo(FS::PathCombine(binPath, "..")); - staticDataPath = foo.absolutePath(); -#elif defined(Q_OS_WIN32) - staticDataPath = binPath; -#elif defined(Q_OS_MAC) - QDir foo(FS::PathCombine(rootPath, "Contents/Resources")); - staticDataPath = foo.absolutePath(); -#endif - // init the logger initLogger(); @@ -199,7 +189,6 @@ MultiMC::MultiMC(int &argc, char **argv, bool test_mode) : QApplication(argc, ar } qDebug() << "Binary path : " << binPath; qDebug() << "Application root path : " << rootPath; - qDebug() << "Static data path : " << staticDataPath; // load settings initGlobalSettings(test_mode); @@ -239,7 +228,7 @@ MultiMC::MultiMC(int &argc, char **argv, bool test_mode) : QApplication(argc, ar m_accounts->loadList(); // init the http meta cache - ENV.initHttpMetaCache(rootPath, staticDataPath); + ENV.initHttpMetaCache(); // create the global network manager ENV.m_qnam.reset(new QNetworkAccessManager(this)); @@ -330,7 +319,7 @@ void MultiMC::initTranslations() } m_mmc_translator.reset(new QTranslator()); - if (m_mmc_translator->load("mmc_" + locale.bcp47Name(), staticDataPath + "/translations")) + if (m_mmc_translator->load("mmc_" + locale.bcp47Name(), FS::PathCombine(QDir::currentPath(), "translations"))) { qDebug() << "Loading MMC Language File for" << locale.bcp47Name().toLocal8Bit().constData() << "..."; |