diff options
| author | 2008-07-31 23:47:27 +0000 | |
|---|---|---|
| committer | 2008-07-31 23:47:27 +0000 | |
| commit | 0433852c16aeff5c4fe0eeea1c39ffd25d85fae3 (patch) | |
| tree | 6cf213f15223d320c0265865905cfb1b8b5e2406 /src/modules/notifier/libkvinotifier.cpp | |
| parent | implemented support for animated avatars (GIF or MNG) and animated fies at wh... (diff) | |
| download | KVIrc-0433852c16aeff5c4fe0eeea1c39ffd25d85fae3.tar.gz KVIrc-0433852c16aeff5c4fe0eeea1c39ffd25d85fae3.tar.bz2 KVIrc-0433852c16aeff5c4fe0eeea1c39ffd25d85fae3.zip | |
some option names tweaks: changed some 'disabledSomething' features to 'enableSomething', option names better describes their actions
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@2147 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/notifier/libkvinotifier.cpp')
| -rw-r--r-- | src/modules/notifier/libkvinotifier.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/notifier/libkvinotifier.cpp b/src/modules/notifier/libkvinotifier.cpp index 7a14610ab..24f547f15 100644 --- a/src/modules/notifier/libkvinotifier.cpp +++ b/src/modules/notifier/libkvinotifier.cpp @@ -248,7 +248,7 @@ static bool notifier_kvs_cmd_show(KviKvsModuleCommandCall * c) static bool notifier_kvs_fnc_isEnabled(KviKvsModuleFunctionCall * c) { bool bCheck; - if(KVI_OPTION_BOOL(KviOption_boolForciblyDisableNotifier)) + if(!KVI_OPTION_BOOL(KviOption_boolEnableNotifier)) bCheck=false; else bCheck=g_tNotifierDisabledUntil < kvi_unixTime(); @@ -301,7 +301,7 @@ static bool notifier_module_ctrl(KviModule *,const char *operation,void *param) g_pNotifierWindow = new KviNotifierWindow(); g_pNotifierWindow->addMessage(p->pWindow,p->szIcon,p->szMessage,p->uMessageLifetime); - g_pNotifierWindow->doShow(KVI_OPTION_BOOL(KviOption_boolDisableNotifierFadein)?false:true); + g_pNotifierWindow->doShow(KVI_OPTION_BOOL(KviOption_boolNotifierFading)? true : false); return true; } |
