summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/msn/outgoingtransfer.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/msn/outgoingtransfer.h')
-rw-r--r--kopete/protocols/msn/outgoingtransfer.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kopete/protocols/msn/outgoingtransfer.h b/kopete/protocols/msn/outgoingtransfer.h
index 014971ef..ee55593f 100644
--- a/kopete/protocols/msn/outgoingtransfer.h
+++ b/kopete/protocols/msn/outgoingtransfer.h
@@ -19,7 +19,7 @@
#include "p2p.h"
#include "dispatcher.h"
-#include <qstringlist.h>
+#include <tqstringlist.h>
/**
@author Kopete Developers
@@ -28,10 +28,10 @@ namespace P2P{
class OutgoingTransfer : public TransferContext
{ Q_OBJECT
public:
- OutgoingTransfer(const QString& to, P2P::Dispatcher *dispatcher, Q_UINT32 sessionId);
+ OutgoingTransfer(const TQString& to, P2P::Dispatcher *dispatcher, Q_UINT32 sessionId);
virtual ~OutgoingTransfer();
- void sendImage(const QByteArray& image);
+ void sendImage(const TQByteArray& image);
private slots:
void slotConnected();
@@ -42,13 +42,13 @@ namespace P2P{
private:
virtual void acknowledged();
- void connectToEndpoint(const QString& hostName);
+ void connectToEndpoint(const TQString& hostName);
virtual void processMessage(const Message& message);
- QStringList m_peerEndpoints;
- QStringList::Iterator m_endpointIterator;
- QString m_remotePort;
- QString m_nonce;
+ TQStringList m_peerEndpoints;
+ TQStringList::Iterator m_endpointIterator;
+ TQString m_remotePort;
+ TQString m_nonce;
char m_handshake;
protected: