diff options
| author | 2011-01-01 20:19:56 +0000 | |
|---|---|---|
| committer | 2011-01-01 20:19:56 +0000 | |
| commit | c601b5a27f74b16158adafe429faefbe573e64a2 (patch) | |
| tree | a3cde3206a45628f8ac86e8dfbdab70b20c3a831 /src/modules/notifier/libkvinotifier.cpp | |
| parent | probable compilation fix for rijndaled/crypto++ (diff) | |
| download | KVIrc-c601b5a27f74b16158adafe429faefbe573e64a2.tar.gz KVIrc-c601b5a27f74b16158adafe429faefbe573e64a2.tar.bz2 KVIrc-c601b5a27f74b16158adafe429faefbe573e64a2.zip | |
The big rename for modules. Still some details remaining.
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5284 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/notifier/libkvinotifier.cpp')
| -rw-r--r-- | src/modules/notifier/libkvinotifier.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/notifier/libkvinotifier.cpp b/src/modules/notifier/libkvinotifier.cpp index 0b71a6450..1943faffc 100644 --- a/src/modules/notifier/libkvinotifier.cpp +++ b/src/modules/notifier/libkvinotifier.cpp @@ -23,8 +23,8 @@ // //============================================================================= -#include "notifierwindow.h" -#include "notifiermessage.h" +#include "NotifierWindow.h" +#include "NotifierMessage.h" #include "KviModule.h" #include "KviKvsVariant.h" @@ -38,7 +38,7 @@ #include <QSplitter> -KviNotifierWindow * g_pNotifierWindow = 0; +NotifierWindow * g_pNotifierWindow = 0; kvi_time_t g_tNotifierDisabledUntil = 0; /* @@ -119,7 +119,7 @@ static bool notifier_kvs_cmd_message(KviKvsModuleCommandCall * c) KVSM_PARAMETERS_END(c) if(!g_pNotifierWindow) - g_pNotifierWindow = new KviNotifierWindow(); + g_pNotifierWindow = new NotifierWindow(); QString szIco=""; QString szWnd=""; @@ -293,7 +293,7 @@ static bool notifier_module_ctrl(KviModule *, const char * pcOperation, void * p return false; if(!g_pNotifierWindow) - g_pNotifierWindow = new KviNotifierWindow(); + g_pNotifierWindow = new NotifierWindow(); g_pNotifierWindow->addMessage(p->pWindow,p->szIcon,p->szMessage,p->uMessageLifetime); g_pNotifierWindow->doShow(KVI_OPTION_BOOL(KviOption_boolNotifierFading) ? true : false); |
