diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-06 18:26:42 +0100 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-06 18:26:42 +0100 |
| commit | 57039b590e4411606795893c90f9871e0412ca31 (patch) | |
| tree | b1242a01cfcb822a7f6fd978ed21bf7410c0e81a /lib/Plugins/SQLite3.h | |
| parent | 152e24176d55e1f9320de05bdd80de74e6973d95 (diff) | |
| download | abrt-57039b590e4411606795893c90f9871e0412ca31.tar.gz abrt-57039b590e4411606795893c90f9871e0412ca31.tar.xz abrt-57039b590e4411606795893c90f9871e0412ca31.zip | |
give Plugin class a map_plugin_settings_t member
This simplifies and unifies get/set settings ops
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'lib/Plugins/SQLite3.h')
| -rw-r--r-- | lib/Plugins/SQLite3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Plugins/SQLite3.h b/lib/Plugins/SQLite3.h index e7ca8ae..0eb3d08 100644 --- a/lib/Plugins/SQLite3.h +++ b/lib/Plugins/SQLite3.h @@ -58,7 +58,7 @@ class CSQLite3 : public CDatabase virtual database_row_t GetUUIDData(const std::string& pUUID, const std::string& pUID); virtual void SetSettings(const map_plugin_settings_t& pSettings); - virtual map_plugin_settings_t GetSettings(); + virtual const map_plugin_settings_t& GetSettings(); }; #endif /* SQLITE3_H_ */ |
