diff options
author | Michele Calgaro <[email protected]> | 2023-07-20 12:56:33 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-07-24 11:00:00 +0900 |
commit | 694b657302a73bcdc1c98d928df81a62cee94d1d (patch) | |
tree | 3a138468bf08c9e0ae21ca0fdff37f6f9e2649fe /libktorrent/interfaces | |
parent | f7b3d4e9cd926384cf343b548aac637777eece7a (diff) | |
download | ktorrent-694b657302a73bcdc1c98d928df81a62cee94d1d.tar.gz ktorrent-694b657302a73bcdc1c98d928df81a62cee94d1d.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 22521a5d98abf03cf740ccdd940e682e76b529d7)
Diffstat (limited to 'libktorrent/interfaces')
-rw-r--r-- | libktorrent/interfaces/coreinterface.h | 2 | ||||
-rw-r--r-- | libktorrent/interfaces/exitoperation.h | 4 | ||||
-rw-r--r-- | libktorrent/interfaces/peersource.h | 2 | ||||
-rw-r--r-- | libktorrent/interfaces/plugin.h | 2 | ||||
-rw-r--r-- | libktorrent/interfaces/torrentfileinterface.h | 2 | ||||
-rw-r--r-- | libktorrent/interfaces/torrentinterface.h | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/libktorrent/interfaces/coreinterface.h b/libktorrent/interfaces/coreinterface.h index d3e80c9..f42c966 100644 --- a/libktorrent/interfaces/coreinterface.h +++ b/libktorrent/interfaces/coreinterface.h @@ -52,7 +52,7 @@ namespace kt */ class CoreInterface : public TQObject { - Q_OBJECT + TQ_OBJECT public: CoreInterface(); diff --git a/libktorrent/interfaces/exitoperation.h b/libktorrent/interfaces/exitoperation.h index 2a33f24..e9c0ae5 100644 --- a/libktorrent/interfaces/exitoperation.h +++ b/libktorrent/interfaces/exitoperation.h @@ -37,7 +37,7 @@ namespace kt */ class ExitOperation : public TQObject { - Q_OBJECT + TQ_OBJECT public: ExitOperation(); @@ -54,7 +54,7 @@ namespace kt */ class ExitJobOperation : public ExitOperation { - Q_OBJECT + TQ_OBJECT public: ExitJobOperation(TDEIO::Job* j); diff --git a/libktorrent/interfaces/peersource.h b/libktorrent/interfaces/peersource.h index 4b3b82a..0b8a852 100644 --- a/libktorrent/interfaces/peersource.h +++ b/libktorrent/interfaces/peersource.h @@ -49,7 +49,7 @@ namespace kt */ class PeerSource : public TQObject { - Q_OBJECT + TQ_OBJECT public: PeerSource(); diff --git a/libktorrent/interfaces/plugin.h b/libktorrent/interfaces/plugin.h index c3e3f90..c2446e9 100644 --- a/libktorrent/interfaces/plugin.h +++ b/libktorrent/interfaces/plugin.h @@ -47,7 +47,7 @@ namespace kt */ class Plugin : public KParts::Plugin { - Q_OBJECT + TQ_OBJECT public: /** diff --git a/libktorrent/interfaces/torrentfileinterface.h b/libktorrent/interfaces/torrentfileinterface.h index 9795964..c9381a9 100644 --- a/libktorrent/interfaces/torrentfileinterface.h +++ b/libktorrent/interfaces/torrentfileinterface.h @@ -43,7 +43,7 @@ namespace kt */ class TorrentFileInterface : public TQObject { - Q_OBJECT + TQ_OBJECT public: /** diff --git a/libktorrent/interfaces/torrentinterface.h b/libktorrent/interfaces/torrentinterface.h index e76e00e..92b5f2c 100644 --- a/libktorrent/interfaces/torrentinterface.h +++ b/libktorrent/interfaces/torrentinterface.h @@ -181,7 +181,7 @@ namespace kt */ class TorrentInterface : public TQObject { - Q_OBJECT + TQ_OBJECT public: TorrentInterface(); |