aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schickel2013-08-13 00:11:46 +0200
committerJohannes Schickel2013-08-13 00:11:46 +0200
commit7c2660c97e7f851cbb1d35e494d913adea2c8653 (patch)
treed3974062cb6f7879ecbe0dc491ebbebec436f1fa
parentd811df89ff4c786ec36b44f598e6f373519e5e2b (diff)
downloadscummvm-rg350-7c2660c97e7f851cbb1d35e494d913adea2c8653.tar.gz
scummvm-rg350-7c2660c97e7f851cbb1d35e494d913adea2c8653.tar.bz2
scummvm-rg350-7c2660c97e7f851cbb1d35e494d913adea2c8653.zip
COMMON: Add setVal to ConfigManager::Domain.
This fixes compilation in the keymapper.
-rw-r--r--common/config-manager.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/config-manager.h b/common/config-manager.h
index a7c949902c..6bf56749c5 100644
--- a/common/config-manager.h
+++ b/common/config-manager.h
@@ -64,6 +64,8 @@ public:
String &operator[](const String &key) { return _entries[key]; }
const String &operator[](const String &key) const { return _entries[key]; }
+ void setVal(const String &key, const String &value) { _entries.setVal(key, value); }
+
String &getVal(const String &key) { return _entries.getVal(key); }
const String &getVal(const String &key) const { return _entries.getVal(key); }