diff options
| author | 2007-04-13 22:49:15 +0000 | |
|---|---|---|
| committer | 2007-04-13 22:49:15 +0000 | |
| commit | f4154c3e60bf7f14705258fca6174fa15933f9c8 (patch) | |
| tree | 65174c59de5a7925e1aac47c1ae015c7aa2463f9 /src/modules/system/libkvisystem.cpp | |
| parent | update win qt4 project (diff) | |
| download | KVIrc-f4154c3e60bf7f14705258fca6174fa15933f9c8.tar.gz KVIrc-f4154c3e60bf7f14705258fca6174fa15933f9c8.tar.bz2 KVIrc-f4154c3e60bf7f14705258fca6174fa15933f9c8.zip | |
some small fixes and changes for $system.call
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@488 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/system/libkvisystem.cpp')
| -rw-r--r-- | src/modules/system/libkvisystem.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/system/libkvisystem.cpp b/src/modules/system/libkvisystem.cpp index 7c18e4064..512d2c42e 100644 --- a/src/modules/system/libkvisystem.cpp +++ b/src/modules/system/libkvisystem.cpp @@ -671,7 +671,7 @@ static bool system_kvs_cmd_setenv(KviKvsModuleCommandCall * c) static bool system_kvs_fnc_plugin_call(KviKvsModuleFunctionCall *c) { - return g_pPluginManager->PluginCall(c); + return g_pPluginManager->pluginCall(c); } static bool system_module_init(KviModule * m) @@ -701,14 +701,14 @@ static bool system_module_init(KviModule * m) static bool system_module_cleanup(KviModule *m) { - g_pPluginManager->UnloadAll(true); + g_pPluginManager->unloadAll(true); delete g_pPluginManager; return true; } static bool system_module_can_unload(KviModule *m) { - if(!g_pPluginManager->CheckUnload()) return false; + if(!g_pPluginManager->checkUnload()) return false; return true; } |
