From 340265f023585f086b845f8c3fe4b52ac7a47cf9 Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Mon, 29 May 2017 16:31:55 +0200 Subject: [PATCH] Remove specific location for config file on Mac OS X. --- linphone-desktop/src/app/paths/Paths.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/linphone-desktop/src/app/paths/Paths.cpp b/linphone-desktop/src/app/paths/Paths.cpp index 9f8983faa..a10e4e8c9 100644 --- a/linphone-desktop/src/app/paths/Paths.cpp +++ b/linphone-desktop/src/app/paths/Paths.cpp @@ -128,9 +128,6 @@ inline QString getAppAssistantConfigDirPath () { } inline QString getAppConfigFilePath () { - if (QSysInfo::productType() == "macos") - return QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation) + PATH_CONFIG; - return QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation) + PATH_CONFIG; }