diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:09:32 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:09:32 -0600 |
commit | 0fed1a188b8d8be416550c63e2d5954f06434386 (patch) | |
tree | 19f346183997f815423bd63cb9f2e86baa1f3b14 /languages/cpp/app_templates/kofficepart | |
parent | 01b73b195ac252a67a00cfa0fa6a1ce4555f7304 (diff) | |
download | tdevelop-0fed1a188b8d8be416550c63e2d5954f06434386.tar.gz tdevelop-0fed1a188b8d8be416550c63e2d5954f06434386.zip |
Remove spurious TQ_OBJECT instances
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 9e820797..2bb18133 100644 --- a/languages/cpp/app_templates/kofficepart/kopart_factory.h +++ b/languages/cpp/app_templates/kofficepart/kopart_factory.h @@ -14,7 +14,7 @@ class KAboutData; class %{APPNAME}Factory : public KoFactory { Q_OBJECT - TQ_OBJECT + public: %{APPNAME}Factory( TQObject* parent = 0, const char* name = 0 ); ~%{APPNAME}Factory(); diff --git a/languages/cpp/app_templates/kofficepart/kopart_part.h b/languages/cpp/app_templates/kofficepart/kopart_part.h index 21ad460a..9dced411 100644 --- a/languages/cpp/app_templates/kofficepart/kopart_part.h +++ b/languages/cpp/app_templates/kofficepart/kopart_part.h @@ -11,7 +11,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 2b97fe4f..c6853333 100644 --- a/languages/cpp/app_templates/kofficepart/kopart_view.h +++ b/languages/cpp/app_templates/kofficepart/kopart_view.h @@ -16,7 +16,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 ); |