diff options
| author | 2008-11-12 17:24:16 +0000 | |
|---|---|---|
| committer | 2008-11-12 17:24:16 +0000 | |
| commit | f4dcff438fe1f93eae4de95d8f3210534b66c777 (patch) | |
| tree | 2450fac8762db3a0125a9fb3a42cc8fb4274f72c /src/modules/perl/libkviperl.cpp | |
| parent | some fixes around. (diff) | |
| download | KVIrc-f4dcff438fe1f93eae4de95d8f3210534b66c777.tar.gz KVIrc-f4dcff438fe1f93eae4de95d8f3210534b66c777.tar.bz2 KVIrc-f4dcff438fe1f93eae4de95d8f3210534b66c777.zip | |
quick fix for perl rules
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@2850 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/perl/libkviperl.cpp')
| -rw-r--r-- | src/modules/perl/libkviperl.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/perl/libkviperl.cpp b/src/modules/perl/libkviperl.cpp index c8073739d..96be07ae2 100644 --- a/src/modules/perl/libkviperl.cpp +++ b/src/modules/perl/libkviperl.cpp @@ -554,13 +554,13 @@ static bool perl_kvs_cmd_destroy(KviKvsModuleCommandCall * c) */ static bool perl_kvs_fnc_isAvailable(KviKvsModuleFunctionCall * c) -{ +{ #ifdef COMPILE_PERL_SUPPORT g_pPerlCoreModule = g_pModuleManager->getModule("perlcore"); c->returnValue()->setBoolean(g_pPerlCoreModule ? true : false); -#else //!COMPILE_PERL_SUPPORT +#else // COMPILE_PERL_SUPPORT c->returnValue()->setBoolean(false); -#endif //!COMPILE_PERL_SUPPORT +#endif // COMPILE_PERL_SUPPORT return true; } |
