diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:36:09 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 19:44:38 +0900 |
commit | 8eb500c4e81229a9853e2f9bac4f39450083f3d7 (patch) | |
tree | 3c700b8550635d12c771ff0a1cb310a40a88e4b7 /tdeio/httpfilter | |
parent | a91e58bb975c56acdab25227a8b1c1c842dbdd34 (diff) | |
download | tdelibs-8eb500c4e81229a9853e2f9bac4f39450083f3d7.tar.gz tdelibs-8eb500c4e81229a9853e2f9bac4f39450083f3d7.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdeio/httpfilter')
-rw-r--r-- | tdeio/httpfilter/httpfilter.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tdeio/httpfilter/httpfilter.h b/tdeio/httpfilter/httpfilter.h index 520a1c627..ee71a6ecd 100644 --- a/tdeio/httpfilter/httpfilter.h +++ b/tdeio/httpfilter/httpfilter.h @@ -35,7 +35,7 @@ class HTTPFilterBase : public TQObject { - Q_OBJECT + TQ_OBJECT public: HTTPFilterBase(); ~HTTPFilterBase(); @@ -55,7 +55,7 @@ protected: class HTTPFilterChain : public HTTPFilterBase { - Q_OBJECT + TQ_OBJECT public: HTTPFilterChain(); @@ -70,7 +70,7 @@ private: class HTTPFilterMD5 : public HTTPFilterBase { - Q_OBJECT + TQ_OBJECT public: HTTPFilterMD5(); @@ -86,7 +86,7 @@ private: class HTTPFilterGZip : public HTTPFilterBase { - Q_OBJECT + TQ_OBJECT public: HTTPFilterGZip(); ~HTTPFilterGZip(); @@ -111,7 +111,7 @@ protected: class HTTPFilterDeflate : public HTTPFilterGZip { - Q_OBJECT + TQ_OBJECT public: HTTPFilterDeflate(); }; |