diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-07-27 16:57:53 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-07-27 18:48:46 +0200 |
commit | 7c2bc4b5ce4fc1a72868aa949e9ec49fbe2e7931 (patch) | |
tree | 4655c7263ca5c64d23d10167cb459dd9cb253815 /src/testprivacyproxy.cpp | |
parent | 88ea2b6cd4382627fb6efca9cc54825aee881d1e (diff) | |
download | tork-7c2bc4b5ce4fc1a72868aa949e9ec49fbe2e7931.tar.gz tork-7c2bc4b5ce4fc1a72868aa949e9ec49fbe2e7931.zip |
Initial TQt conversion
Diffstat (limited to 'src/testprivacyproxy.cpp')
-rw-r--r-- | src/testprivacyproxy.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/testprivacyproxy.cpp b/src/testprivacyproxy.cpp index 7b03f44..fbf878d 100644 --- a/src/testprivacyproxy.cpp +++ b/src/testprivacyproxy.cpp @@ -20,29 +20,29 @@ ***************************************************************************/ -#include <qsocket.h> -#include <qtextstream.h> +#include <ntqsocket.h> +#include <ntqtextstream.h> #include "testprivacyproxy.h" #include "tork.h" #include "torkconfig.h" -#include <qtimer.h> +#include <ntqtimer.h> #include <klocale.h> #include <assert.h> -#include <qfile.h> +#include <ntqfile.h> #include <sys/socket.h> #include <netdb.h> #include <sys/types.h> #include <netinet/in.h> #include <arpa/inet.h> #include <kstandarddirs.h> -#include <qdir.h> +#include <ntqdir.h> TestPrivoxy::TestPrivoxy( ) { // create the socket and connect various of its signals - socket = new QSocket( this ); + socket = new TQSocket( this ); connect( socket, SIGNAL(connected()), SLOT(socketConnected()) ); connect( socket, SIGNAL(connectionClosed()), @@ -55,7 +55,7 @@ TestPrivoxy::TestPrivoxy( ) } -void TestPrivoxy::connectTo(const QString &host, Q_UINT16 port ) +void TestPrivoxy::connectTo(const TQString &host, TQ_UINT16 port ) { // connect to the server socket->connectToHost( host, port ); |