summaryrefslogtreecommitdiffstats
path: root/src/client/util/util.h
diff options
context:
space:
mode:
authorManuel Schneider2014-09-04 15:30:06 +0200
committerManuel Schneider2014-09-04 15:30:06 +0200
commit18d86a8ff51707f9cd2127eb9df6412ddab86311 (patch)
tree87c2dccd4088fa90f80429e25c349b9a920d6dd1 /src/client/util/util.h
parentRemove heavy unreadable debug messages. Reintent. (diff)
downloadpvs2-18d86a8ff51707f9cd2127eb9df6412ddab86311.tar.gz
pvs2-18d86a8ff51707f9cd2127eb9df6412ddab86311.tar.xz
pvs2-18d86a8ff51707f9cd2127eb9df6412ddab86311.zip
Let client and server use the config file in the "pvs2" folder.
Diffstat (limited to 'src/client/util/util.h')
-rw-r--r--src/client/util/util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/util/util.h b/src/client/util/util.h
index 662599f..19d1ac1 100644
--- a/src/client/util/util.h
+++ b/src/client/util/util.h
@@ -6,8 +6,8 @@
// Use like this:
// USER_SETTINGS(settings)
// settings.value("somekey")
-#define USER_SETTINGS(name) QSettings name (QSettings::IniFormat, QSettings::UserScope, "openslx", "pvs2")
-#define SYSTEM_SETTINGS(name) QSettings name (QSettings::IniFormat, QSettings::SystemScope, "openslx", "pvs2")
+#define USER_SETTINGS(name) QSettings name (QSettings::IniFormat, QSettings::UserScope, "openslx/pvs2", "pvs2")
+#define SYSTEM_SETTINGS(name) QSettings name (QSettings::IniFormat, QSettings::SystemScope, "openslx/pvs2", "pvs2")
#include <QDir>