diff options
author | Petr Mrázek <peterix@gmail.com> | 2015-10-05 02:00:03 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2015-10-05 02:00:03 +0200 |
commit | db926a546e2c58227ab1dcb129b056213d33d6f5 (patch) | |
tree | 112000f07221c13b18484cfedc8d5c17fa61951d | |
parent | 4a900a58d424c1130f0c8b931699a7cf4232a5ca (diff) | |
download | MultiMC-db926a546e2c58227ab1dcb129b056213d33d6f5.tar MultiMC-db926a546e2c58227ab1dcb129b056213d33d6f5.tar.gz MultiMC-db926a546e2c58227ab1dcb129b056213d33d6f5.tar.lz MultiMC-db926a546e2c58227ab1dcb129b056213d33d6f5.tar.xz MultiMC-db926a546e2c58227ab1dcb129b056213d33d6f5.zip |
NOISSUE there is too much ifdef involved...
-rw-r--r-- | application/MultiMC.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/MultiMC.cpp b/application/MultiMC.cpp index 5584de1f..0cf6cf92 100644 --- a/application/MultiMC.cpp +++ b/application/MultiMC.cpp @@ -165,7 +165,7 @@ MultiMC::MultiMC(int &argc, char **argv, bool test_mode) : QApplication(argc, ar #elif defined(Q_OS_WIN32) rootPath = binPath; #elif defined(Q_OS_MAC) - QDir foo(PathCombine(binPath, "../..")); + QDir foo(FS::PathCombine(binPath, "../..")); rootPath = foo.absolutePath(); #endif } |