[Scummvm-cvs-logs] scummvm master -> 7c2660c97e7f851cbb1d35e494d913adea2c8653

lordhoto lordhoto at gmail.com
Tue Aug 13 00:16:48 CEST 2013


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
7c2660c97e COMMON: Add setVal to ConfigManager::Domain.


Commit: 7c2660c97e7f851cbb1d35e494d913adea2c8653
    https://github.com/scummvm/scummvm/commit/7c2660c97e7f851cbb1d35e494d913adea2c8653
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2013-08-12T15:11:46-07:00

Commit Message:
COMMON: Add setVal to ConfigManager::Domain.

This fixes compilation in the keymapper.

Changed paths:
    common/config-manager.h



diff --git a/common/config-manager.h b/common/config-manager.h
index a7c9499..6bf5674 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); }
 






More information about the Scummvm-git-logs mailing list