diff options
Diffstat (limited to 'src/modules/notifier/libkvinotifier.cpp')
-rw-r--r-- | src/modules/notifier/libkvinotifier.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/modules/notifier/libkvinotifier.cpp b/src/modules/notifier/libkvinotifier.cpp index edc27f0f..deaf6a34 100644 --- a/src/modules/notifier/libkvinotifier.cpp +++ b/src/modules/notifier/libkvinotifier.cpp @@ -36,7 +36,7 @@ #include "kvi_time.h" #include "kvi_options.h" -#include <qsplitter.h> +#include <tqsplitter.h> KviNotifierWindow * g_pNotifierWindow = 0; kvi_time_t g_tNotifierDisabledUntil = 0; @@ -114,7 +114,7 @@ kvi_time_t g_tNotifierDisabledUntil = 0; static bool notifier_kvs_cmd_message(KviKvsModuleCommandCall * c) { - QString szMessage; + TQString szMessage; KVSM_PARAMETERS_BEGIN(c) KVSM_PARAMETER("message",KVS_PT_STRING,0,szMessage) KVSM_PARAMETERS_END(c) @@ -122,8 +122,8 @@ static bool notifier_kvs_cmd_message(KviKvsModuleCommandCall * c) if(!g_pNotifierWindow) g_pNotifierWindow = new KviNotifierWindow(); - QString szIco=""; - QString szWnd=""; + TQString szIco=""; + TQString szWnd=""; KviWindow * pWnd = c->window(); @@ -287,8 +287,8 @@ static bool notifier_module_can_unload(KviModule *m) typedef struct _NotifierMessageSupaDupaParameterStruct { KviWindow * pWindow; - QString szIcon; - QString szMessage; + TQString szIcon; + TQString szMessage; unsigned int uMessageLifetime; // 0 means no hide } NotifierMessageSupaDupaParameterStruct; |