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-20 13:37:04 +0900 |
commit | cb59219281a9666896ee96b02a487bbc0206082d (patch) | |
tree | 75f3ebf2b90d7d8d2dc4b3c7af59601acede5ebb /kexi/formeditor/factories/containerfactory.h | |
parent | a34711af5e9f617dbf46f5c0383ad8f3fa04cd6d (diff) | |
download | koffice-cb59219281a9666896ee96b02a487bbc0206082d.tar.gz koffice-cb59219281a9666896ee96b02a487bbc0206082d.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 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: |