summaryrefslogtreecommitdiffstats
path: root/kget/slaveevent.h
diff options
context:
space:
mode:
Diffstat (limited to 'kget/slaveevent.h')
-rw-r--r--kget/slaveevent.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kget/slaveevent.h b/kget/slaveevent.h
index 6fb5f96b..6f87bbbe 100644
--- a/kget/slaveevent.h
+++ b/kget/slaveevent.h
@@ -27,7 +27,7 @@
#ifndef SLAVEEVENT_H
#define SLAVEEVENT_H
-#include <qevent.h>
+#include <tqevent.h>
class Transfer;
@@ -39,20 +39,20 @@ class SlaveEvent:public QCustomEvent
{
public:
SlaveEvent(Transfer * _item, unsigned int _event, Q_ULLONG _ldata = 0L);
- SlaveEvent(Transfer * _item, unsigned int _event, const QString & _msg);
+ SlaveEvent(Transfer * _item, unsigned int _event, const TQString & _msg);
~SlaveEvent();
unsigned int getEvent() const;
Transfer *getItem() const;
Q_ULLONG getData() const;
- const QString & getMsg() const;
+ const TQString & getMsg() const;
private:
unsigned int m_event;
Transfer *m_item;
Q_ULLONG m_ldata;
- QString m_msg;
+ TQString m_msg;
};