diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
commit | e654398e46e37abf457b2b1122ab898d2c51c49f (patch) | |
tree | d39ee6440f3c3663c3ead84a2d4cc2d034667e96 /libkcddb/asyncsmtpsubmit.cpp | |
parent | e4f29b18e19394b9352f52a6c0d0d0e3932cf511 (diff) | |
download | tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.tar.gz tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1157644 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkcddb/asyncsmtpsubmit.cpp')
-rw-r--r-- | libkcddb/asyncsmtpsubmit.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libkcddb/asyncsmtpsubmit.cpp b/libkcddb/asyncsmtpsubmit.cpp index 484a0fc2..ff120fac 100644 --- a/libkcddb/asyncsmtpsubmit.cpp +++ b/libkcddb/asyncsmtpsubmit.cpp @@ -19,13 +19,13 @@ #include "asyncsmtpsubmit.h" #include "cdinfo.h" -#include <qdatastream.h> +#include <tqdatastream.h> #include <kdebug.h> namespace KCDDB { - AsyncSMTPSubmit::AsyncSMTPSubmit(const QString& hostname, uint port, - const QString& username, const QString& from, const QString& to ) + AsyncSMTPSubmit::AsyncSMTPSubmit(const TQString& hostname, uint port, + const TQString& username, const TQString& from, const TQString& to ) : SMTPSubmit( hostname, port, username, from, to ) { @@ -38,8 +38,8 @@ namespace KCDDB CDDB::Result AsyncSMTPSubmit::runJob(KIO::Job* job) { - connect( job, SIGNAL( result( KIO::Job* ) ), - this, SLOT(slotDone( KIO::Job* ) ) ); + connect( job, TQT_SIGNAL( result( KIO::Job* ) ), + this, TQT_SLOT(slotDone( KIO::Job* ) ) ); return Success; } |