aboutsummaryrefslogtreecommitdiff
path: root/common/config-manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/config-manager.h')
-rw-r--r--common/config-manager.h18
1 files changed, 3 insertions, 15 deletions
diff --git a/common/config-manager.h b/common/config-manager.h
index 75e6ee6449..699774dfcd 100644
--- a/common/config-manager.h
+++ b/common/config-manager.h
@@ -68,31 +68,17 @@ public:
typedef HashMap<String, Domain, IgnoreCase_Hash, IgnoreCase_EqualTo> DomainMap;
-#if !(defined(PALMOS_ARM) || defined(PALMOS_DEBUG) || defined(__GP32__))
/** The name of the application domain (normally 'scummvm'). */
- static const String kApplicationDomain;
+ static const char *kApplicationDomain;
/** The transient (pseudo) domain. */
- static const String kTransientDomain;
-
-#ifdef ENABLE_KEYMAPPER
- /** The name of keymapper domain used to store the key maps */
- static const String kKeymapperDomain;
-#endif
-
-#else
- static const char *kApplicationDomain;
static const char *kTransientDomain;
- const String _emptyString;
-
#ifdef ENABLE_KEYMAPPER
/** The name of keymapper domain used to store the key maps */
static const char *kKeymapperDomain;
#endif
-#endif
-
void loadDefaultConfigFile();
void loadConfigFile(const String &filename);
@@ -179,6 +165,8 @@ private:
Domain * _activeDomain;
String _filename;
+
+ const String _emptyString;
};
} // End of namespace Common