diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:48:06 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:48:06 +0000 |
commit | 47c8a359c5276062c4bc17f0e82410f29081b502 (patch) | |
tree | 2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /kopete/protocols/gadu/gadudcctransaction.h | |
parent | 6f82532777a35e0e60bbd2b290b2e93e646f349b (diff) | |
download | tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/protocols/gadu/gadudcctransaction.h')
-rw-r--r-- | kopete/protocols/gadu/gadudcctransaction.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kopete/protocols/gadu/gadudcctransaction.h b/kopete/protocols/gadu/gadudcctransaction.h index 541f3838..8f5b57b8 100644 --- a/kopete/protocols/gadu/gadudcctransaction.h +++ b/kopete/protocols/gadu/gadudcctransaction.h @@ -23,8 +23,8 @@ #ifndef GADUDCCTRANS_H #define GADUDCCTRANS_H -#include <qobject.h> -#include <qfile.h> +#include <tqobject.h> +#include <tqfile.h> class QSocketNotifier; class gg_dcc; @@ -34,7 +34,7 @@ namespace Kopete { class Transfer; } namespace Kopete { class FileTransferInfo; } class GaduDCC; -class GaduDCCTransaction: QObject { +class GaduDCCTransaction: TQObject { Q_OBJECT public: GaduDCCTransaction( GaduDCC*, const char* name = NULL ); @@ -42,7 +42,7 @@ public: bool setupIncoming( const unsigned int, GaduContact* ); bool setupIncoming( gg_dcc* ); - bool setupOutgoing( GaduContact*, QString& ); + bool setupOutgoing( GaduContact*, TQString& ); unsigned int recvUIN(); unsigned int peerUIN(); @@ -56,7 +56,7 @@ protected slots: private slots: void watcher(); - void slotIncomingTransferAccepted ( Kopete::Transfer*, const QString& ); + void slotIncomingTransferAccepted ( Kopete::Transfer*, const TQString& ); void slotTransferRefused ( const Kopete::FileTransferInfo& ); void slotTransferResult(); @@ -71,14 +71,14 @@ private: gg_dcc* dccSock_; - QSocketNotifier* read_; - QSocketNotifier* write_; + TQSocketNotifier* read_; + TQSocketNotifier* write_; GaduContact* contact; Kopete::Transfer* transfer_; long transferId_; - QFile localFile_; + TQFile localFile_; int peer; unsigned int incoming; GaduDCC* gaduDCC_; |