From 7c2660c97e7f851cbb1d35e494d913adea2c8653 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Tue, 13 Aug 2013 00:11:46 +0200 Subject: COMMON: Add setVal to ConfigManager::Domain. This fixes compilation in the keymapper. --- common/config-manager.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'common') 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); } -- cgit v1.2.3