From cb59219281a9666896ee96b02a487bbc0206082d Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 20 Jul 2023 13:37:04 +0900 Subject: Replace Q_OBJECT with TQ_OBJECT Signed-off-by: Michele Calgaro --- kexi/formeditor/factories/containerfactory.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'kexi/formeditor/factories/containerfactory.h') diff --git a/kexi/formeditor/factories/containerfactory.h b/kexi/formeditor/factories/containerfactory.h index 18a9f7df..6346eb8a 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: -- cgit v1.2.1