aboutsummaryrefslogtreecommitdiffstats
path: root/core/prefs-macros.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/prefs-macros.h')
-rw-r--r--core/prefs-macros.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/prefs-macros.h b/core/prefs-macros.h
index 15a9a9867..16a92aa24 100644
--- a/core/prefs-macros.h
+++ b/core/prefs-macros.h
@@ -60,11 +60,11 @@
else \
prefs.field = defval
-#define GET_TXT(name, field) \
- v = s.value(QString(name)); \
- if (v.isValid()) \
- prefs.field = strdup(v.toString().toUtf8().constData()); \
- else \
+#define GET_TXT(name, field) \
+ v = s.value(QString(name)); \
+ if (v.isValid()) \
+ prefs.field = strdup(qPrintable(v.toString())); \
+ else \
prefs.field = copy_string(default_prefs.field)
#define SAVE_OR_REMOVE_SPECIAL(_setting, _default, _compare, _value) \