diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-08-24 05:30:42 +0200 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-08-24 05:30:42 +0200 |
| commit | 0fdbc8ae884312b04309b4931d8bdf9b082de82c (patch) | |
| tree | e9e469bfcb468a5336c13de462488c3c40664451 /src/Daemon/Daemon.cpp | |
| parent | 959a0b1b38e45cf8c00a862be01a0bb05e599123 (diff) | |
| download | abrt-0fdbc8ae884312b04309b4931d8bdf9b082de82c.tar.gz abrt-0fdbc8ae884312b04309b4931d8bdf9b082de82c.tar.xz abrt-0fdbc8ae884312b04309b4931d8bdf9b082de82c.zip | |
hardcode CPluginManager constructor's parameters, they are constant
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src/Daemon/Daemon.cpp')
| -rw-r--r-- | src/Daemon/Daemon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Daemon/Daemon.cpp b/src/Daemon/Daemon.cpp index 56c65d9..d5b4b2c 100644 --- a/src/Daemon/Daemon.cpp +++ b/src/Daemon/Daemon.cpp @@ -596,7 +596,7 @@ int main(int argc, char** argv) /* (comment here) */ g_pMainloop = g_main_loop_new(NULL, FALSE); /* (comment here) */ - g_pPluginManager = new CPluginManager(PLUGINS_CONF_DIR, PLUGINS_LIB_DIR); + g_pPluginManager = new CPluginManager(); g_pPluginManager->LoadPlugins(); SetUpMW(); SetUpCron(); |
