diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 12:57:21 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 12:57:21 +0900 |
commit | 318e3e3a6243cbfe01d25f679ca5f1ed07bb06e0 (patch) | |
tree | 585f50405e645bb112a4e5656b000c9f41e903a2 /src/upnp | |
parent | 7ef277b379f2a65548c40f03c6f90b33f64b8f9e (diff) | |
download | tork-318e3e3a6243cbfe01d25f679ca5f1ed07bb06e0.tar.gz tork-318e3e3a6243cbfe01d25f679ca5f1ed07bb06e0.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/upnp')
-rw-r--r-- | src/upnp/exitoperation.h | 4 | ||||
-rw-r--r-- | src/upnp/httprequest.h | 2 | ||||
-rw-r--r-- | src/upnp/upnpmcastsocket.h | 2 | ||||
-rw-r--r-- | src/upnp/upnprouter.h | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/src/upnp/exitoperation.h b/src/upnp/exitoperation.h index 3afda7a..7cddcfa 100644 --- a/src/upnp/exitoperation.h +++ b/src/upnp/exitoperation.h @@ -38,7 +38,7 @@ namespace kt */ class ExitOperation : public TQObject { - Q_OBJECT + TQ_OBJECT public: ExitOperation(); virtual ~ExitOperation(); @@ -54,7 +54,7 @@ namespace kt */ class ExitJobOperation : public ExitOperation { - Q_OBJECT + TQ_OBJECT public: ExitJobOperation(TDEIO::Job* j); virtual ~ExitJobOperation(); diff --git a/src/upnp/httprequest.h b/src/upnp/httprequest.h index 47428cd..d35e08e 100644 --- a/src/upnp/httprequest.h +++ b/src/upnp/httprequest.h @@ -42,7 +42,7 @@ namespace bt */ class HTTPRequest : public kt::ExitOperation { - Q_OBJECT + TQ_OBJECT public: /** * Constructor, set the url and the request header. diff --git a/src/upnp/upnpmcastsocket.h b/src/upnp/upnpmcastsocket.h index c7b7a3c..9cad417 100644 --- a/src/upnp/upnpmcastsocket.h +++ b/src/upnp/upnpmcastsocket.h @@ -40,7 +40,7 @@ namespace kt */ class UPnPMCastSocket : public KNetwork::KDatagramSocket { - Q_OBJECT + TQ_OBJECT public: UPnPMCastSocket(bool verbose = false); virtual ~UPnPMCastSocket(); diff --git a/src/upnp/upnprouter.h b/src/upnp/upnprouter.h index 73463c9..fbf20c1 100644 --- a/src/upnp/upnprouter.h +++ b/src/upnp/upnprouter.h @@ -45,7 +45,7 @@ namespace bt */ class WaitJob : public TDEIO::Job { - Q_OBJECT + TQ_OBJECT public: WaitJob(Uint32 millis); virtual ~WaitJob(); @@ -164,7 +164,7 @@ namespace kt */ class UPnPRouter : public TQObject { - Q_OBJECT + TQ_OBJECT public: struct Forwarding |