aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/perlcore
diff options
context:
space:
mode:
authorGravatar Fabio Bas2009-09-02 16:59:35 +0000
committerGravatar Fabio Bas2009-09-02 16:59:35 +0000
commit91dc33acc44132ab80f510ee4cf848bbf6362f96 (patch)
tree6aad7dfb7e9a17d926740357b3717176dd7a3a6f /src/modules/perlcore
parentcompilation de-noise (diff)
downloadKVIrc-91dc33acc44132ab80f510ee4cf848bbf6362f96.tar.gz
KVIrc-91dc33acc44132ab80f510ee4cf848bbf6362f96.tar.bz2
KVIrc-91dc33acc44132ab80f510ee4cf848bbf6362f96.zip
more compilation denoising
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@3468 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/perlcore')
-rw-r--r--src/modules/perlcore/libkviperlcore.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/perlcore/libkviperlcore.cpp b/src/modules/perlcore/libkviperlcore.cpp
index 98bdecb86..2c286b255 100644
--- a/src/modules/perlcore/libkviperlcore.cpp
+++ b/src/modules/perlcore/libkviperlcore.cpp
@@ -346,7 +346,7 @@ static void perlcore_destroy_all_interpreters()
#endif // COMPILE_PERL_SUPPORT
-static bool perlcore_module_ctrl(KviModule * m,const char * cmd,void * param)
+static bool perlcore_module_ctrl(KviModule *,const char * cmd,void * param)
{
#ifdef COMPILE_PERL_SUPPORT
if(kvi_strEqualCS(cmd,KVI_PERLCORECTRLCOMMAND_EXECUTE))
@@ -383,7 +383,7 @@ static bool perlcore_module_ctrl(KviModule * m,const char * cmd,void * param)
return false;
}
-static bool perlcore_module_init(KviModule * m)
+static bool perlcore_module_init(KviModule *)
{
#ifdef COMPILE_PERL_SUPPORT
g_pInterpreters = new KviPointerHashTable<QString,KviPerlInterpreter>(17,false);
@@ -398,7 +398,7 @@ static bool perlcore_module_init(KviModule * m)
#endif // !COMPILE_PERL_SUPPORT
}
-static bool perlcore_module_cleanup(KviModule * m)
+static bool perlcore_module_cleanup(KviModule *)
{
#ifdef COMPILE_PERL_SUPPORT
perlcore_destroy_all_interpreters();
@@ -409,7 +409,7 @@ static bool perlcore_module_cleanup(KviModule * m)
return true;
}
-static bool perlcore_module_can_unload(KviModule * m)
+static bool perlcore_module_can_unload(KviModule *)
{
#ifdef COMPILE_PERL_SUPPORT
return (g_pInterpreters->count() == 0);