summaryrefslogtreecommitdiffstats
path: root/knotes/knotesnetrecv.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /knotes/knotesnetrecv.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'knotes/knotesnetrecv.h')
-rw-r--r--knotes/knotesnetrecv.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/knotes/knotesnetrecv.h b/knotes/knotesnetrecv.h
index 105aa646..b0e1f4b4 100644
--- a/knotes/knotesnetrecv.h
+++ b/knotes/knotesnetrecv.h
@@ -32,7 +32,7 @@
#ifndef KNOTESNETRECV_H
#define KNOTESNETRECV_H
-#include <qobject.h>
+#include <tqobject.h>
class QTimer;
@@ -49,7 +49,7 @@ public:
~KNotesNetworkReceiver();
signals:
- void sigNoteReceived( const QString &, const QString & );
+ void sigNoteReceived( const TQString &, const TQString & );
private slots:
void slotDataAvailable();
@@ -58,12 +58,12 @@ private slots:
void slotError( int err );
private:
- QTimer *m_timer; // to avoid memory and connection floods
+ TQTimer *m_timer; // to avoid memory and connection floods
- QByteArray *m_buffer;
+ TQByteArray *m_buffer;
KNetwork::KBufferedSocket *m_sock;
- QString m_titleAddon;
+ TQString m_titleAddon;
};
#endif