From 47ac1ffe396607bb1258afeba4d2b644321c58ed Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Tue, 19 Apr 2011 15:26:35 +0200 Subject: daemon: remove unused dbus calls and their support code Signed-off-by: Denys Vlasenko --- src/daemon/Settings.cpp | 22 ---------------------- 1 file changed, 22 deletions(-) (limited to 'src/daemon/Settings.cpp') diff --git a/src/daemon/Settings.cpp b/src/daemon/Settings.cpp index b3d1ade5..cb77d191 100644 --- a/src/daemon/Settings.cpp +++ b/src/daemon/Settings.cpp @@ -295,28 +295,6 @@ int load_settings() return err; } -/* dbus call to retrieve .conf file data from daemon */ -map_abrt_settings_t GetSettings() -{ - map_abrt_settings_t ABRTSettings; - - ABRTSettings[SECTION_COMMON] = s_mapSectionCommon; - - return ABRTSettings; -} - -///* dbus call to change some .conf file data */ -//void SetSettings(const map_abrt_settings_t& pSettings, const char *dbus_sender) -//{ -// map_abrt_settings_t::const_iterator it = pSettings.find(SECTION_COMMON); -// map_abrt_settings_t::const_iterator end = pSettings.end(); -// if (it != end) -// { -// s_mapSectionCommon = it->second; -// ParseCommon(); -// } -//} - void free_settings() { list_free_with_free(g_settings_setOpenGPGPublicKeys); -- cgit