diff options
Diffstat (limited to 'korn/kio_read.h')
-rw-r--r-- | korn/kio_read.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/korn/kio_read.h b/korn/kio_read.h index 52dd986ab..970e3c8cc 100644 --- a/korn/kio_read.h +++ b/korn/kio_read.h @@ -21,7 +21,7 @@ //This class should be used if someone wants to read the Full Message -#include <qobject.h> +#include <tqobject.h> class KKioDrop; class KornMailId; @@ -35,7 +35,7 @@ class QString; class KIO_Read : public QObject { Q_OBJECT public: - KIO_Read( QObject * parent = 0, const char * name = 0 ); + KIO_Read( TQObject * parent = 0, const char * name = 0 ); ~KIO_Read(); public slots: @@ -46,15 +46,15 @@ public slots: private: KKioDrop *_kio; KIO::Job *_job; - QString *_message; + TQString *_message; signals: - //This signal is emitted when the whole message is read; the message got passed as QString* - void ready( QString* ); + //This signal is emitted when the whole message is read; the message got passed as TQString* + void ready( TQString* ); private slots: void slotResult( KIO::Job* ); - void slotData( KIO::Job*, const QByteArray& ); + void slotData( KIO::Job*, const TQByteArray& ); }; #endif //MK_KIO_READ_H |