diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 13:37:04 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-22 10:29:56 +0900 |
commit | ef14fba42c78a96d905c42632a62dc11f353b1c3 (patch) | |
tree | ad32afdaaa32b215fe8b9be49fbf578d30a556d3 /kexi/formeditor/factories/containerfactory.h | |
parent | 8b5a8460b388924f71bef71fc0dc4862e8c146d2 (diff) | |
download | koffice-ef14fba4.tar.gz koffice-ef14fba4.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit cb59219281a9666896ee96b02a487bbc0206082d)
Diffstat (limited to 'kexi/formeditor/factories/containerfactory.h')
-rw-r--r-- | kexi/formeditor/factories/containerfactory.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kexi/formeditor/factories/containerfactory.h b/kexi/formeditor/factories/containerfactory.h index 18a9f7df1..6346eb8ab 100644 --- a/kexi/formeditor/factories/containerfactory.h +++ b/kexi/formeditor/factories/containerfactory.h @@ -54,7 +54,7 @@ class InsertPageCommand : public KCommand //! Helper widget (used when using 'Lay out horizontally') class KFORMEDITOR_EXPORT HBox : public TQFrame { - Q_OBJECT + TQ_OBJECT public: @@ -70,7 +70,7 @@ class KFORMEDITOR_EXPORT HBox : public TQFrame //! Helper widget (used when using 'Lay out vertically') class KFORMEDITOR_EXPORT VBox : public TQFrame { - Q_OBJECT + TQ_OBJECT public: @@ -86,7 +86,7 @@ class KFORMEDITOR_EXPORT VBox : public TQFrame //! Helper widget (used when using 'Lay out in a grid') class KFORMEDITOR_EXPORT Grid : public TQFrame { - Q_OBJECT + TQ_OBJECT public: @@ -102,7 +102,7 @@ class KFORMEDITOR_EXPORT Grid : public TQFrame //! Helper widget (used when using 'Lay out with horizontal flow') class KFORMEDITOR_EXPORT HFlow : public TQFrame { - Q_OBJECT + TQ_OBJECT public: @@ -118,7 +118,7 @@ class KFORMEDITOR_EXPORT HFlow : public TQFrame //! Helper widget (used when using 'Lay out with horizontal flow') class KFORMEDITOR_EXPORT VFlow : public TQFrame { - Q_OBJECT + TQ_OBJECT public: @@ -135,7 +135,7 @@ class KFORMEDITOR_EXPORT VFlow : public TQFrame //! A simple container widget class KFORMEDITOR_EXPORT ContainerWidget : public TQWidget { - Q_OBJECT + TQ_OBJECT friend class KFDTabWidget; @@ -163,7 +163,7 @@ class KFORMEDITOR_EXPORT ContainerWidget : public TQWidget //! A tab widget class KFORMEDITOR_EXPORT KFDTabWidget : public KFormDesigner::TabWidget { - Q_OBJECT + TQ_OBJECT public: @@ -189,7 +189,7 @@ class KFORMEDITOR_EXPORT KFDTabWidget : public KFormDesigner::TabWidget //! A group box widget class KFORMEDITOR_EXPORT GroupBox : public TQGroupBox { - Q_OBJECT + TQ_OBJECT public: @@ -213,7 +213,7 @@ class KFORMEDITOR_EXPORT GroupBox : public TQGroupBox //! A form embedded as a widget inside other form class KFORMEDITOR_EXPORT SubForm : public TQScrollView { - Q_OBJECT + TQ_OBJECT TQ_PROPERTY(TQString formName READ formName WRITE setFormName DESIGNABLE true) @@ -235,7 +235,7 @@ class KFORMEDITOR_EXPORT SubForm : public TQScrollView //! Standard Factory for all container widgets class ContainerFactory : public KFormDesigner::WidgetFactory { - Q_OBJECT + TQ_OBJECT public: |