diff options
author | Michele Calgaro <[email protected]> | 2023-07-20 15:06:55 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-07-21 09:07:44 +0900 |
commit | 1c73e70c5605c86ab3ee2da13874ecfa0fe769f3 (patch) | |
tree | 3fd44965373b367fadf8e6bd914c2ebd378a361e /librss | |
parent | baad27f23ad7a29d77aa6b0ce277b2d06882d217 (diff) | |
download | tdenetwork-1c73e70c5605c86ab3ee2da13874ecfa0fe769f3.tar.gz tdenetwork-1c73e70c5605c86ab3ee2da13874ecfa0fe769f3.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'librss')
-rw-r--r-- | librss/image.h | 2 | ||||
-rw-r--r-- | librss/loader.h | 8 | ||||
-rw-r--r-- | librss/testlibrss.h | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/librss/image.h b/librss/image.h index 8fe555cc..1492c741 100644 --- a/librss/image.h +++ b/librss/image.h @@ -33,7 +33,7 @@ namespace RSS */ class LIBRSS_EXPORT Image : public TQObject { - Q_OBJECT + TQ_OBJECT public: /** diff --git a/librss/loader.h b/librss/loader.h index a70304b4..32857de0 100644 --- a/librss/loader.h +++ b/librss/loader.h @@ -34,7 +34,7 @@ namespace RSS */ class DataRetriever : public TQObject { - Q_OBJECT + TQ_OBJECT public: /** @@ -88,7 +88,7 @@ namespace RSS */ class LIBRSS_EXPORT FileRetriever : public DataRetriever { - Q_OBJECT + TQ_OBJECT public: /** @@ -149,7 +149,7 @@ namespace RSS */ class OutputRetriever : public DataRetriever { - Q_OBJECT + TQ_OBJECT public: /** @@ -242,7 +242,7 @@ namespace RSS */ class LIBRSS_EXPORT Loader : public TQObject { - Q_OBJECT + TQ_OBJECT friend class someClassWhichDoesNotExist; public: diff --git a/librss/testlibrss.h b/librss/testlibrss.h index 4c074a52..7f82c755 100644 --- a/librss/testlibrss.h +++ b/librss/testlibrss.h @@ -13,7 +13,7 @@ using RSS::Status; class Tester : public TQObject { - Q_OBJECT + TQ_OBJECT public: void test(); |