From abacec5787c7a857e55d4e8b52a2432f1333bad8 Mon Sep 17 00:00:00 2001 From: Paultergeist Date: Sun, 30 Aug 2015 00:53:08 -0500 Subject: [PATCH] Fixed compile error on Mac --- src/core/Config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Config.cpp b/src/core/Config.cpp index b2dd125b5..72e4e4a3d 100644 --- a/src/core/Config.cpp +++ b/src/core/Config.cpp @@ -70,7 +70,7 @@ Config::Config(QObject* parent) userPath += "/keepassx/"; #else - userPath = QDir::fromNativeSeparators(QStandardPaths::writableLocation(QDesktopServices::AppDataLocation)); + userPath = QDir::fromNativeSeparators(QStandardPaths::writableLocation(QStandardPaths::AppDataLocation)); // storageLocation() appends the application name ("/keepassx") to the end userPath += "/"; #endif