summaryrefslogtreecommitdiffstats
path: root/src/upnp/httprequest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/upnp/httprequest.cpp')
-rw-r--r--src/upnp/httprequest.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/upnp/httprequest.cpp b/src/upnp/httprequest.cpp
index a6c3e71..b85eb75 100644
--- a/src/upnp/httprequest.cpp
+++ b/src/upnp/httprequest.cpp
@@ -37,11 +37,11 @@ namespace bt
sock->enableWrite(true);
sock->setTimeout(30000);
sock->setBlocking(false);
- connect(sock,SIGNAL(readyRead()),this,SLOT(onReadyRead()));
- connect(sock,SIGNAL(gotError(int)),this,SLOT(onError(int )));
- connect(sock,SIGNAL(timedOut()),this,SLOT(onTimeout()));
- connect(sock,SIGNAL(connected(const KResolverEntry&)),
- this, SLOT(onConnect( const KResolverEntry& )));
+ connect(sock,TQ_SIGNAL(readyRead()),this,TQ_SLOT(onReadyRead()));
+ connect(sock,TQ_SIGNAL(gotError(int)),this,TQ_SLOT(onError(int )));
+ connect(sock,TQ_SIGNAL(timedOut()),this,TQ_SLOT(onTimeout()));
+ connect(sock,TQ_SIGNAL(connected(const KResolverEntry&)),
+ this, TQ_SLOT(onConnect( const KResolverEntry& )));
}