diff options
author | Timothy Pearson <[email protected]> | 2012-02-17 16:09:32 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-02-17 16:09:32 -0600 |
commit | 0fed1a188b8d8be416550c63e2d5954f06434386 (patch) | |
tree | 19f346183997f815423bd63cb9f2e86baa1f3b14 /buildtools/custommakefiles | |
parent | 01b73b195ac252a67a00cfa0fa6a1ce4555f7304 (diff) | |
download | tdevelop-0fed1a188b8d8be416550c63e2d5954f06434386.tar.gz tdevelop-0fed1a188b8d8be416550c63e2d5954f06434386.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'buildtools/custommakefiles')
6 files changed, 6 insertions, 6 deletions
diff --git a/buildtools/custommakefiles/custombuildoptionswidget.h b/buildtools/custommakefiles/custombuildoptionswidget.h index 03c7232d..4a5f63cf 100644 --- a/buildtools/custommakefiles/custombuildoptionswidget.h +++ b/buildtools/custommakefiles/custombuildoptionswidget.h @@ -21,7 +21,7 @@ class TQTabWidget; class CustomBuildOptionsWidget : public CustomBuildOptionsWidgetBase { Q_OBJECT - TQ_OBJECT + public: CustomBuildOptionsWidget( TQDomDocument &dom, TQWidget *parent=0, const char *name=0 ); diff --git a/buildtools/custommakefiles/custommakeconfigwidget.h b/buildtools/custommakefiles/custommakeconfigwidget.h index 4a0dbfed..9ace95e0 100644 --- a/buildtools/custommakefiles/custommakeconfigwidget.h +++ b/buildtools/custommakefiles/custommakeconfigwidget.h @@ -24,7 +24,7 @@ class EnvironmentVariablesWidget; class CustomMakeConfigWidget : public CustomMakeConfigWidgetBase { Q_OBJECT - TQ_OBJECT + public: CustomMakeConfigWidget(CustomProjectPart* part, const TQString& configGroup, TQWidget* parent); diff --git a/buildtools/custommakefiles/custommanagerwidget.h b/buildtools/custommakefiles/custommanagerwidget.h index 9d0de848..657bae9f 100644 --- a/buildtools/custommakefiles/custommanagerwidget.h +++ b/buildtools/custommakefiles/custommanagerwidget.h @@ -23,7 +23,7 @@ class KEditListBox; class CustomManagerWidget : public CustomManagerWidgetBase { Q_OBJECT - TQ_OBJECT + public: CustomManagerWidget( CustomProjectPart* part, TQWidget* parent ); diff --git a/buildtools/custommakefiles/customotherconfigwidget.h b/buildtools/custommakefiles/customotherconfigwidget.h index 3bb6da0e..64f3a5bd 100644 --- a/buildtools/custommakefiles/customotherconfigwidget.h +++ b/buildtools/custommakefiles/customotherconfigwidget.h @@ -24,7 +24,7 @@ class EnvironmentVariablesWidget; class CustomOtherConfigWidget : public CustomOtherConfigWidgetBase { Q_OBJECT - TQ_OBJECT + public: CustomOtherConfigWidget(CustomProjectPart* part, const TQString& configGroup, TQWidget* parent); diff --git a/buildtools/custommakefiles/customprojectpart.h b/buildtools/custommakefiles/customprojectpart.h index 1a963e34..76680fa7 100644 --- a/buildtools/custommakefiles/customprojectpart.h +++ b/buildtools/custommakefiles/customprojectpart.h @@ -33,7 +33,7 @@ class KSelectAction; class CustomProjectPart : public KDevBuildTool { Q_OBJECT - TQ_OBJECT + public: CustomProjectPart( TQObject *parent, const char *name, const TQStringList & ); diff --git a/buildtools/custommakefiles/selectnewfilesdialog.h b/buildtools/custommakefiles/selectnewfilesdialog.h index 531a79c0..3c8d9c14 100644 --- a/buildtools/custommakefiles/selectnewfilesdialog.h +++ b/buildtools/custommakefiles/selectnewfilesdialog.h @@ -21,7 +21,7 @@ class SelectNewFilesDialogBase; class SelectNewFilesDialog : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: SelectNewFilesDialog( TQStringList paths, TQWidget* parent = 0, const char* name = 0 ); |