diff options
author | Johannes Schickel | 2013-08-13 00:11:46 +0200 |
---|---|---|
committer | Johannes Schickel | 2013-08-13 00:11:46 +0200 |
commit | 7c2660c97e7f851cbb1d35e494d913adea2c8653 (patch) | |
tree | d3974062cb6f7879ecbe0dc491ebbebec436f1fa /common | |
parent | d811df89ff4c786ec36b44f598e6f373519e5e2b (diff) | |
download | scummvm-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.
Diffstat (limited to 'common')
-rw-r--r-- | common/config-manager.h | 2 |
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); } |