summaryrefslogtreecommitdiffstats
path: root/src/Daemon/Settings.h
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-08-24 16:42:15 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-08-24 16:42:15 +0200
commit951fb690f1cde250f4d3cc6565ec4fc63f5df8fa (patch)
treeab451b65099661f65de1c9643401b12d4f6c57ed /src/Daemon/Settings.h
parentb8ac6f50b0bfff3446110c9284e52dd49290fe5d (diff)
downloadabrt-951fb690f1cde250f4d3cc6565ec4fc63f5df8fa.tar.gz
abrt-951fb690f1cde250f4d3cc6565ec4fc63f5df8fa.tar.xz
abrt-951fb690f1cde250f4d3cc6565ec4fc63f5df8fa.zip
trivial simplification: make LoadSettings() take char*, not string& param
and some cosmetics... Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src/Daemon/Settings.h')
-rw-r--r--src/Daemon/Settings.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Daemon/Settings.h b/src/Daemon/Settings.h
index 2df3806..c95786d 100644
--- a/src/Daemon/Settings.h
+++ b/src/Daemon/Settings.h
@@ -15,16 +15,16 @@ typedef std::vector<pair_string_string_t> vector_pair_strings_t;
typedef std::map<std::string, vector_pair_strings_t> map_analyzer_actions_and_reporters_t;
typedef std::map<std::string, vector_pair_strings_t> map_cron_t;
-void LoadSettings(const std::string& pPath);
+void LoadSettings(const char* pPath);
extern set_strings_t g_settings_setOpenGPGPublicKeys;
extern set_strings_t g_settings_mapSettingsBlackList;
-extern vector_pair_string_string_t g_settings_vectorActionsAndReporters;
extern set_strings_t g_settings_setEnabledPlugins;
+extern unsigned int g_settings_nMaxCrashReportsSize;
+extern bool g_settings_bOpenGPGCheck;
+extern std::string g_settings_sDatabase;
+extern map_cron_t g_settings_mapCron;
+extern vector_pair_string_string_t g_settings_vectorActionsAndReporters;
extern map_analyzer_actions_and_reporters_t g_settings_mapAnalyzerActionsAndReporters;
-extern unsigned int g_settings_nMaxCrashReportsSize;
-extern bool g_settings_bOpenGPGCheck;
-extern std::string g_settings_sDatabase;
-extern map_cron_t g_settings_mapCron;
#endif