summaryrefslogtreecommitdiffstats
path: root/logic/ftb/FTBPlugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'logic/ftb/FTBPlugin.cpp')
-rw-r--r--logic/ftb/FTBPlugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/logic/ftb/FTBPlugin.cpp b/logic/ftb/FTBPlugin.cpp
index 201b5d3b..8a08f916 100644
--- a/logic/ftb/FTBPlugin.cpp
+++ b/logic/ftb/FTBPlugin.cpp
@@ -314,7 +314,7 @@ static QString getLocalCacheStorageLocation()
" If you are on windows, this means your system is broken.";
}
#elif defined(Q_OS_MAC)
- ftbDefault = PathCombine(QDir::homePath(), "Library/Application Support/ftblauncher");
+ ftbDefault = FS::PathCombine(QDir::homePath(), "Library/Application Support/ftblauncher");
#else
ftbDefault = QDir::home().absoluteFilePath(".ftblauncher");
#endif
@@ -337,7 +337,7 @@ static QString getRoamingStorageLocation()
qCritical() << "Your APPDATA folder is missing! If you are on windows, this means your system is broken.";
}
#elif defined(Q_OS_MAC)
- ftbDefault = PathCombine(QDir::homePath(), "Library/Application Support/ftblauncher");
+ ftbDefault = FS::PathCombine(QDir::homePath(), "Library/Application Support/ftblauncher");
#else
ftbDefault = QDir::home().absoluteFilePath(".ftblauncher");
#endif