diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 12:56:23 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 12:56:23 +0900 |
commit | 3f12e375e0f59a603642726e14617664ce088dd4 (patch) | |
tree | 9e53db3064573e3a1fd25643a6b2ca2cd2805211 | |
parent | 3f1b0feca40594d9bda0f1732cf54a2b02d6cd93 (diff) | |
download | kstreamripper-3f12e375e0f59a603642726e14617664ce088dd4.tar.gz kstreamripper-3f12e375e0f59a603642726e14617664ce088dd4.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | src/addnewstreamimpl.h | 2 | ||||
-rw-r--r-- | src/kstreamripper.h | 2 | ||||
-rw-r--r-- | src/processcontroller.h | 2 | ||||
-rw-r--r-- | src/processlistviewitem.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/addnewstreamimpl.h b/src/addnewstreamimpl.h index 26c6e52..5683491 100644 --- a/src/addnewstreamimpl.h +++ b/src/addnewstreamimpl.h @@ -25,7 +25,7 @@ class AddNewStreamImpl : public AddNewStream { - Q_OBJECT + TQ_OBJECT public: diff --git a/src/kstreamripper.h b/src/kstreamripper.h index b8b0baf..5a16a99 100644 --- a/src/kstreamripper.h +++ b/src/kstreamripper.h @@ -38,7 +38,7 @@ class TQString; class KStreamRipper : public KStreamRipperBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/src/processcontroller.h b/src/processcontroller.h index cd733bb..88deff7 100644 --- a/src/processcontroller.h +++ b/src/processcontroller.h @@ -34,7 +34,7 @@ class ProcessListViewItem; class ProcessController : public TQObject { - Q_OBJECT + TQ_OBJECT public: ProcessController(ProcessListViewItem * parent); diff --git a/src/processlistviewitem.h b/src/processlistviewitem.h index 21e56d2..5af8d6f 100644 --- a/src/processlistviewitem.h +++ b/src/processlistviewitem.h @@ -30,7 +30,7 @@ class ProcessController; class ProcessListViewItem : public TQObject, public TQListViewItem { - Q_OBJECT + TQ_OBJECT public: |