summaryrefslogtreecommitdiffstats
path: root/kdecore/ksock.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
commitffe8a83e053396df448e9413828527613ca3bd46 (patch)
treea73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdecore/ksock.cpp
parent682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff)
downloadtdelibs-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/ksock.cpp')
-rw-r--r--kdecore/ksock.cpp34
1 files changed, 17 insertions, 17 deletions
diff --git a/kdecore/ksock.cpp b/kdecore/ksock.cpp
index da28a64d5..10c694512 100644
--- a/kdecore/ksock.cpp
+++ b/kdecore/ksock.cpp
@@ -80,20 +80,20 @@ extern "C" {
#define SOMAXCONN 5
#endif
-#include <qapplication.h>
-#include <qsocketnotifier.h>
+#include <tqapplication.h>
+#include <tqsocketnotifier.h>
#include "netsupp.h" // leave this last
#ifdef __CYGWIN__
-#include "qwindowdefs.h"
+#include "tqwindowdefs.h"
#endif
class KSocketPrivate
{
public:
- QSocketNotifier *readNotifier;
- QSocketNotifier *writeNotifier;
+ TQSocketNotifier *readNotifier;
+ TQSocketNotifier *writeNotifier;
KSocketPrivate() :
readNotifier(0), writeNotifier(0)
@@ -134,8 +134,8 @@ void KSocket::enableRead( bool _state )
{
if ( !d->readNotifier )
{
- d->readNotifier = new QSocketNotifier( sock, QSocketNotifier::Read );
- QObject::connect( d->readNotifier, SIGNAL( activated(int) ), this, SLOT( slotRead(int) ) );
+ d->readNotifier = new TQSocketNotifier( sock, TQSocketNotifier::Read );
+ TQObject::connect( d->readNotifier, TQT_SIGNAL( activated(int) ), this, TQT_SLOT( slotRead(int) ) );
}
else
d->readNotifier->setEnabled( true );
@@ -150,9 +150,9 @@ void KSocket::enableWrite( bool _state )
{
if ( !d->writeNotifier )
{
- d->writeNotifier = new QSocketNotifier( sock, QSocketNotifier::Write );
- QObject::connect( d->writeNotifier, SIGNAL( activated(int) ), this,
- SLOT( slotWrite(int) ) );
+ d->writeNotifier = new TQSocketNotifier( sock, TQSocketNotifier::Write );
+ TQObject::connect( d->writeNotifier, TQT_SIGNAL( activated(int) ), this,
+ TQT_SLOT( slotWrite(int) ) );
}
else
d->writeNotifier->setEnabled( true );
@@ -182,7 +182,7 @@ void KSocket::slotWrite( int )
*/
bool KSocket::connect( const char *_path )
{
- KExtendedSocket ks(QString::null, _path, KExtendedSocket::unixSocket);
+ KExtendedSocket ks(TQString::null, _path, KExtendedSocket::unixSocket);
ks.connect();
sock = ks.fd();
@@ -194,7 +194,7 @@ bool KSocket::connect( const char *_path )
/*
* Connects the socket to _host, _port.
*/
-bool KSocket::connect( const QString& _host, unsigned short int _port, int _timeout )
+bool KSocket::connect( const TQString& _host, unsigned short int _port, int _timeout )
{
KExtendedSocket ks(_host, _port, KExtendedSocket::inetSocket);
ks.setTimeout(_timeout, 0);
@@ -240,7 +240,7 @@ bool KSocket::initSockaddr (ksockaddr_in *server_name, const char *hostname, uns
if (domain != PF_INET)
return false;
- QPtrList<KAddressInfo> list = KExtendedSocket::lookup(hostname, QString::number(port),
+ TQPtrList<KAddressInfo> list = KExtendedSocket::lookup(hostname, TQString::number(port),
KExtendedSocket::ipv4Socket);
list.setAutoDelete(true);
@@ -278,7 +278,7 @@ class KServerSocketPrivate
{
public:
bool bind;
- QCString path;
+ TQCString path;
unsigned short int port;
KExtendedSocket *ks;
};
@@ -307,7 +307,7 @@ bool KServerSocket::init( const char *_path )
unlink(_path );
d->path = _path;
- KExtendedSocket *ks = new KExtendedSocket(QString::null, _path, KExtendedSocket::passiveSocket |
+ KExtendedSocket *ks = new KExtendedSocket(TQString::null, _path, KExtendedSocket::passiveSocket |
KExtendedSocket::unixSocket);
d->ks = ks;
@@ -321,7 +321,7 @@ bool KServerSocket::init( unsigned short int _port )
{
d->port = _port;
KExtendedSocket *ks;
- ks = new KExtendedSocket(QString::null, _port, KExtendedSocket::passiveSocket |
+ ks = new KExtendedSocket(TQString::null, _port, KExtendedSocket::passiveSocket |
KExtendedSocket::inetSocket);
d->ks = ks;
@@ -349,7 +349,7 @@ bool KServerSocket::bindAndListen()
sock = d->ks->fd();
- connect( d->ks->readNotifier(), SIGNAL( activated(int) ), this, SLOT( slotAccept(int) ) );
+ connect( d->ks->readNotifier(), TQT_SIGNAL( activated(int) ), this, TQT_SLOT( slotAccept(int) ) );
return true;
}