diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdecore/network/kbufferedsocket.h | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdecore/network/kbufferedsocket.h')
-rw-r--r-- | kdecore/network/kbufferedsocket.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kdecore/network/kbufferedsocket.h b/kdecore/network/kbufferedsocket.h index b0b99f8d1..d99862781 100644 --- a/kdecore/network/kbufferedsocket.h +++ b/kdecore/network/kbufferedsocket.h @@ -25,9 +25,9 @@ #ifndef KBUFFEREDSOCKET_H #define KBUFFEREDSOCKET_H -#include <qobject.h> -#include <qcstring.h> -#include <qvaluelist.h> +#include <tqobject.h> +#include <tqcstring.h> +#include <tqvaluelist.h> #include "kstreamsocket.h" #include <kdelibs_export.h> @@ -49,7 +49,7 @@ class KBufferedSocketPrivate; * * @note Buffered sockets only make sense if you're using them from * the main (event-loop) thread. This is actually a restriction - * imposed by Qt's QSocketNotifier. If you want to use a socket + * imposed by Qt's TQSocketNotifier. If you want to use a socket * in an auxiliary thread, please use KStreamSocket. * * @see KNetwork::KStreamSocket, KNetwork::KServerSocket @@ -67,8 +67,8 @@ public: * @param parent the parent object for this object * @param name the internal name for this object */ - KBufferedSocket(const QString& node = QString::null, const QString& service = QString::null, - QObject* parent = 0L, const char *name = 0L); + KBufferedSocket(const TQString& node = TQString::null, const TQString& service = TQString::null, + TQObject* parent = 0L, const char *name = 0L); /** * Destructor. @@ -195,7 +195,7 @@ public: /** * Reads a line of data from the socket buffers. */ - QCString readLine(); + TQCString readLine(); // KDE4: make virtual, add timeout to match the Qt4 signature // and move to another class up the hierarchy |