summaryrefslogtreecommitdiffstats
path: root/src/sources/updateevent.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-04 20:48:23 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-04 20:48:23 +0000
commit383adc283801b6238d8acfc750890613a63f8060 (patch)
treeaf3a65389067c05263db2ef4551a541501422998 /src/sources/updateevent.h
parentda7847adb43726079c7a4be1f06acbebe0bdde57 (diff)
downloadkima-383adc283801b6238d8acfc750890613a63f8060.tar.gz
kima-383adc283801b6238d8acfc750890613a63f8060.zip
TQt4 port kima
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kima@1239290 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/sources/updateevent.h')
-rw-r--r--src/sources/updateevent.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/sources/updateevent.h b/src/sources/updateevent.h
index ae6ef24..5bca627 100644
--- a/src/sources/updateevent.h
+++ b/src/sources/updateevent.h
@@ -21,18 +21,18 @@
#ifndef UPDATEEVENT_H
#define UPDATEEVENT_H
-#include <qevent.h>
+#include <tqevent.h>
/**
- * UpdateEvent is a custom event to update the QObject of the ThreadedTrigger periodically
+ * UpdateEvent is a custom event to update the TQObject of the ThreadedTrigger periodically
*/
-class UpdateEvent: public QCustomEvent{
+class UpdateEvent: public TQCustomEvent{
public:
- UpdateEvent(const QString& inMessage);
- static const int TYPE = QEvent::User + 1;
- const QString& getMessage() const;
+ UpdateEvent(const TQString& inMessage);
+ static const int TYPE = TQEvent::User + 1;
+ const TQString& getMessage() const;
private:
- QString mMessage;
+ TQString mMessage;
};
#endif //UPDATEEVENT_H