summaryrefslogtreecommitdiffstats
path: root/tdeio/httpfilter
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 15:36:09 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 19:46:54 +0900
commit55cd4e5c5697a37d6845e2f056a16c512799023c (patch)
tree931f7e94f3a152b1bc24f3e676b5eb6651064d6b /tdeio/httpfilter
parent5c2b0a1494b04e420a342ea5bae7699a812af82c (diff)
downloadtdelibs-55cd4e5c5697a37d6845e2f056a16c512799023c.tar.gz
tdelibs-55cd4e5c5697a37d6845e2f056a16c512799023c.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 8eb500c4e81229a9853e2f9bac4f39450083f3d7)
Diffstat (limited to 'tdeio/httpfilter')
-rw-r--r--tdeio/httpfilter/httpfilter.h10
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();
};