summaryrefslogtreecommitdiffstats
path: root/kode/kwsdl
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 15:07:09 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 22:35:23 +0900
commitcd4b0ac22608120ad003f575a1640e1ddc7703df (patch)
treee68977e058f9d4900eaf266d1dbfc277dbae62e0 /kode/kwsdl
parentcc2af80602eb3d2a8ea2915d6ff59a10b17f7a21 (diff)
downloadtdepim-cd4b0ac22608120ad003f575a1640e1ddc7703df.tar.gz
tdepim-cd4b0ac22608120ad003f575a1640e1ddc7703df.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kode/kwsdl')
-rw-r--r--kode/kwsdl/compiler.h2
-rw-r--r--kode/kwsdl/kung/binaryinputfield.h4
-rw-r--r--kode/kwsdl/kung/boolinputfield.h2
-rw-r--r--kode/kwsdl/kung/dateinputfield.h2
-rw-r--r--kode/kwsdl/kung/dispatcher.h2
-rw-r--r--kode/kwsdl/kung/doubleinputfield.h2
-rw-r--r--kode/kwsdl/kung/enuminputfield.h2
-rw-r--r--kode/kwsdl/kung/inputfield.h2
-rw-r--r--kode/kwsdl/kung/integerinputfield.h2
-rw-r--r--kode/kwsdl/kung/listinputfield.h4
-rw-r--r--kode/kwsdl/kung/loader.h2
-rw-r--r--kode/kwsdl/kung/pageinputfield.h2
-rw-r--r--kode/kwsdl/kung/stringinputfield.h2
-rw-r--r--kode/kwsdl/kung/timeinputfield.h2
-rw-r--r--kode/kwsdl/kung/transport.h2
-rw-r--r--kode/kwsdl/schema/fileprovider.h2
-rw-r--r--kode/kwsdl/tests/google/googlesearch.h1
-rw-r--r--kode/kwsdl/tests/google/googlesearchservice.h2
-rw-r--r--kode/kwsdl/tests/google/transport.h2
19 files changed, 20 insertions, 21 deletions
diff --git a/kode/kwsdl/compiler.h b/kode/kwsdl/compiler.h
index f7ab693db..1d1781ab3 100644
--- a/kode/kwsdl/compiler.h
+++ b/kode/kwsdl/compiler.h
@@ -31,7 +31,7 @@ namespace KWSDL {
class Compiler : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kode/kwsdl/kung/binaryinputfield.h b/kode/kwsdl/kung/binaryinputfield.h
index 3695654c3..f5c2c67bd 100644
--- a/kode/kwsdl/kung/binaryinputfield.h
+++ b/kode/kwsdl/kung/binaryinputfield.h
@@ -32,7 +32,7 @@ class TQPushButton;
class BinaryInputField : public SimpleInputField
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -58,7 +58,7 @@ class BinaryInputField : public SimpleInputField
class BinaryWidget : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kode/kwsdl/kung/boolinputfield.h b/kode/kwsdl/kung/boolinputfield.h
index e99a3d505..0f40c60e3 100644
--- a/kode/kwsdl/kung/boolinputfield.h
+++ b/kode/kwsdl/kung/boolinputfield.h
@@ -30,7 +30,7 @@ class TQCheckBox;
class BoolInputField : public SimpleInputField
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kode/kwsdl/kung/dateinputfield.h b/kode/kwsdl/kung/dateinputfield.h
index 6a5d29aea..54cd3deb2 100644
--- a/kode/kwsdl/kung/dateinputfield.h
+++ b/kode/kwsdl/kung/dateinputfield.h
@@ -31,7 +31,7 @@ class KDatePicker;
class DateInputField : public SimpleInputField
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kode/kwsdl/kung/dispatcher.h b/kode/kwsdl/kung/dispatcher.h
index c5e0744d8..cba421cf3 100644
--- a/kode/kwsdl/kung/dispatcher.h
+++ b/kode/kwsdl/kung/dispatcher.h
@@ -31,7 +31,7 @@ class Transport;
class Dispatcher : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kode/kwsdl/kung/doubleinputfield.h b/kode/kwsdl/kung/doubleinputfield.h
index 1368a6cd2..df3eaa831 100644
--- a/kode/kwsdl/kung/doubleinputfield.h
+++ b/kode/kwsdl/kung/doubleinputfield.h
@@ -30,7 +30,7 @@ class KDoubleSpinBox;
class DoubleInputField : public SimpleInputField
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kode/kwsdl/kung/enuminputfield.h b/kode/kwsdl/kung/enuminputfield.h
index 13615b1e2..bb5b6990d 100644
--- a/kode/kwsdl/kung/enuminputfield.h
+++ b/kode/kwsdl/kung/enuminputfield.h
@@ -30,7 +30,7 @@ class KComboBox;
class EnumInputField : public SimpleInputField
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kode/kwsdl/kung/inputfield.h b/kode/kwsdl/kung/inputfield.h
index 4a68e1611..69692c48d 100644
--- a/kode/kwsdl/kung/inputfield.h
+++ b/kode/kwsdl/kung/inputfield.h
@@ -39,7 +39,7 @@ class ComplexType;
*/
class InputField : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kode/kwsdl/kung/integerinputfield.h b/kode/kwsdl/kung/integerinputfield.h
index 912943089..dbb8cc271 100644
--- a/kode/kwsdl/kung/integerinputfield.h
+++ b/kode/kwsdl/kung/integerinputfield.h
@@ -30,7 +30,7 @@ class KIntSpinBox;
class IntegerInputField : public SimpleInputField
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kode/kwsdl/kung/listinputfield.h b/kode/kwsdl/kung/listinputfield.h
index c7105bbbe..ed49e8157 100644
--- a/kode/kwsdl/kung/listinputfield.h
+++ b/kode/kwsdl/kung/listinputfield.h
@@ -32,7 +32,7 @@ class TQPushButton;
class ListInputField : public SimpleInputField
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -53,7 +53,7 @@ class ListInputField : public SimpleInputField
class ListWidget : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kode/kwsdl/kung/loader.h b/kode/kwsdl/kung/loader.h
index 2839780c1..d3ff45d5c 100644
--- a/kode/kwsdl/kung/loader.h
+++ b/kode/kwsdl/kung/loader.h
@@ -28,7 +28,7 @@ class Dispatcher;
class Loader : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kode/kwsdl/kung/pageinputfield.h b/kode/kwsdl/kung/pageinputfield.h
index f70ba98e1..f0f9411b2 100644
--- a/kode/kwsdl/kung/pageinputfield.h
+++ b/kode/kwsdl/kung/pageinputfield.h
@@ -30,7 +30,7 @@
class PageInputField : public InputField
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kode/kwsdl/kung/stringinputfield.h b/kode/kwsdl/kung/stringinputfield.h
index b6c8f172a..d237aae55 100644
--- a/kode/kwsdl/kung/stringinputfield.h
+++ b/kode/kwsdl/kung/stringinputfield.h
@@ -30,7 +30,7 @@ class TQLineEdit;
class StringInputField : public SimpleInputField
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kode/kwsdl/kung/timeinputfield.h b/kode/kwsdl/kung/timeinputfield.h
index 2b3516521..f586d1908 100644
--- a/kode/kwsdl/kung/timeinputfield.h
+++ b/kode/kwsdl/kung/timeinputfield.h
@@ -31,7 +31,7 @@ class KTimeWidget;
class TimeInputField : public SimpleInputField
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kode/kwsdl/kung/transport.h b/kode/kwsdl/kung/transport.h
index 463555256..384d14a9b 100644
--- a/kode/kwsdl/kung/transport.h
+++ b/kode/kwsdl/kung/transport.h
@@ -25,7 +25,7 @@
class Transport : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kode/kwsdl/schema/fileprovider.h b/kode/kwsdl/schema/fileprovider.h
index c855416dc..817c55ad9 100644
--- a/kode/kwsdl/schema/fileprovider.h
+++ b/kode/kwsdl/schema/fileprovider.h
@@ -32,7 +32,7 @@ namespace Schema {
class FileProvider : TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kode/kwsdl/tests/google/googlesearch.h b/kode/kwsdl/tests/google/googlesearch.h
index b64006161..9551fc5d7 100644
--- a/kode/kwsdl/tests/google/googlesearch.h
+++ b/kode/kwsdl/tests/google/googlesearch.h
@@ -30,7 +30,6 @@
class GoogleSearch : public TQObject
{
- Q_OBJECT
TQ_OBJECT
public:
diff --git a/kode/kwsdl/tests/google/googlesearchservice.h b/kode/kwsdl/tests/google/googlesearchservice.h
index e61cd446c..0d2d8e79e 100644
--- a/kode/kwsdl/tests/google/googlesearchservice.h
+++ b/kode/kwsdl/tests/google/googlesearchservice.h
@@ -32,7 +32,7 @@
class GoogleSearchService : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kode/kwsdl/tests/google/transport.h b/kode/kwsdl/tests/google/transport.h
index a0873e26c..cfb8a6c13 100644
--- a/kode/kwsdl/tests/google/transport.h
+++ b/kode/kwsdl/tests/google/transport.h
@@ -29,7 +29,7 @@
class Transport : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public: