diff options
author | Michele Calgaro <[email protected]> | 2023-07-20 15:07:57 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-07-21 17:28:49 +0900 |
commit | 9c40420b261ea30555cabc299829028ee345b9e5 (patch) | |
tree | 0bec930107d651516239f2592512b2057b9f5452 /languages/cpp/app_templates/kofficepart | |
parent | 3f9cda007f52077d533117c4fa2441629ad9d796 (diff) | |
download | tdevelop-9c40420b261ea30555cabc299829028ee345b9e5.tar.gz tdevelop-9c40420b261ea30555cabc299829028ee345b9e5.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'languages/cpp/app_templates/kofficepart')
-rw-r--r-- | languages/cpp/app_templates/kofficepart/kopart_factory.h | 2 | ||||
-rw-r--r-- | languages/cpp/app_templates/kofficepart/kopart_part.h | 2 | ||||
-rw-r--r-- | languages/cpp/app_templates/kofficepart/kopart_view.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/languages/cpp/app_templates/kofficepart/kopart_factory.h b/languages/cpp/app_templates/kofficepart/kopart_factory.h index 2d5a56e2..7957037a 100644 --- a/languages/cpp/app_templates/kofficepart/kopart_factory.h +++ b/languages/cpp/app_templates/kofficepart/kopart_factory.h @@ -13,7 +13,7 @@ class TDEAboutData; class %{APPNAME}Factory : public KoFactory { - Q_OBJECT + TQ_OBJECT public: %{APPNAME}Factory( TQObject* parent = 0, const char* name = 0 ); diff --git a/languages/cpp/app_templates/kofficepart/kopart_part.h b/languages/cpp/app_templates/kofficepart/kopart_part.h index 9dced411..57b57cb6 100644 --- a/languages/cpp/app_templates/kofficepart/kopart_part.h +++ b/languages/cpp/app_templates/kofficepart/kopart_part.h @@ -10,7 +10,7 @@ class %{APPNAME}Part : public KoDocument { - Q_OBJECT + TQ_OBJECT public: %{APPNAME}Part( TQWidget *parentWidget = 0, const char *widgetName = 0, TQObject* parent = 0, const char* name = 0, bool singleViewMode = false ); diff --git a/languages/cpp/app_templates/kofficepart/kopart_view.h b/languages/cpp/app_templates/kofficepart/kopart_view.h index a7e0fd50..6233ff6d 100644 --- a/languages/cpp/app_templates/kofficepart/kopart_view.h +++ b/languages/cpp/app_templates/kofficepart/kopart_view.h @@ -15,7 +15,7 @@ class %{APPNAME}Part; class %{APPNAME}View : public KoView { - Q_OBJECT + TQ_OBJECT public: %{APPNAME}View( %{APPNAME}Part* part, TQWidget* parent = 0, const char* name = 0 ); |