summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/testbed/testbedfakeserver.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/testbed/testbedfakeserver.h')
-rw-r--r--kopete/protocols/testbed/testbedfakeserver.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kopete/protocols/testbed/testbedfakeserver.h b/kopete/protocols/testbed/testbedfakeserver.h
index c5daabe4..1e58031a 100644
--- a/kopete/protocols/testbed/testbedfakeserver.h
+++ b/kopete/protocols/testbed/testbedfakeserver.h
@@ -17,8 +17,8 @@
#ifndef TESTBEDFAKESERVER_H
#define TESTBEDFAKESERVER_H
-#include "qobject.h"
-#include <qptrlist.h>
+#include "tqobject.h"
+#include <tqptrlist.h>
class TestbedIncomingMessage;
@@ -35,7 +35,7 @@ public:
/**
* Called to simulate sending a message to a remote contact
*/
- void sendMessage( QString contactId, QString message );
+ void sendMessage( TQString contactId, TQString message );
public slots:
/**
@@ -43,13 +43,13 @@ public slots:
* In reality, a message on the incoming message list
* connects to this slot when it's time to 'arrive'
*/
- void incomingMessage( QString message );
+ void incomingMessage( TQString message );
signals:
/**
* Tells the account that a message arrived
*/
- void messageReceived( const QString &message );
+ void messageReceived( const TQString &message );
protected:
/**
@@ -60,7 +60,7 @@ protected:
/**
* List of incoming messages
*/
- QPtrList<TestbedIncomingMessage> m_incomingMessages;
+ TQPtrList<TestbedIncomingMessage> m_incomingMessages;
};
#endif