diff options
Diffstat (limited to 'korn/kio_read.cpp')
-rw-r--r-- | korn/kio_read.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/korn/kio_read.cpp b/korn/kio_read.cpp index e1f5211e4..54466990c 100644 --- a/korn/kio_read.cpp +++ b/korn/kio_read.cpp @@ -30,11 +30,11 @@ #include <kio/jobclasses.h> #include <kio/scheduler.h> -#include <qcstring.h> -#include <qstring.h> +#include <tqcstring.h> +#include <tqstring.h> -KIO_Read::KIO_Read( QObject * parent, const char * name ) - : QObject( parent, name ), +KIO_Read::KIO_Read( TQObject * parent, const char * name ) + : TQObject( parent, name ), _job( 0 ), _message( 0 ) { @@ -60,8 +60,8 @@ void KIO_Read::readMail( const KornMailId *& mailid, KKioDrop* drop ) _job = KIO::get( kurl, false, false ); _job->addMetaData( metadata ); - connect( _job, SIGNAL( result( KIO::Job* ) ), this, SLOT( slotResult( KIO::Job* ) ) ); - connect( _job, SIGNAL( data( KIO::Job*, const QByteArray& ) ), this, SLOT( slotData( KIO::Job*, const QByteArray & ) ) ); + connect( _job, TQT_SIGNAL( result( KIO::Job* ) ), this, TQT_SLOT( slotResult( KIO::Job* ) ) ); + connect( _job, TQT_SIGNAL( data( KIO::Job*, const TQByteArray& ) ), this, TQT_SLOT( slotData( KIO::Job*, const TQByteArray & ) ) ); } void KIO_Read::canceled( ) @@ -85,7 +85,7 @@ void KIO_Read::slotResult( KIO::Job* job ) _job = 0; } -void KIO_Read::slotData( KIO::Job* job, const QByteArray & data ) +void KIO_Read::slotData( KIO::Job* job, const TQByteArray & data ) { if( job != _job ) kdWarning() << i18n( "Unknown job returned; I will try if this one will do... " ) << endl; |