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/php | |
parent | 01b73b195ac252a67a00cfa0fa6a1ce4555f7304 (diff) | |
download | tdevelop-0fed1a188b8d8be416550c63e2d5954f06434386.tar.gz tdevelop-0fed1a188b8d8be416550c63e2d5954f06434386.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'languages/php')
-rw-r--r-- | languages/php/phpcodecompletion.h | 2 | ||||
-rw-r--r-- | languages/php/phpconfigdata.h | 2 | ||||
-rw-r--r-- | languages/php/phpconfigwidget.h | 2 | ||||
-rw-r--r-- | languages/php/phperrorview.h | 2 | ||||
-rw-r--r-- | languages/php/phpfile.h | 2 | ||||
-rw-r--r-- | languages/php/phphtmlview.h | 2 | ||||
-rw-r--r-- | languages/php/phpnewclassdlg.h | 2 | ||||
-rw-r--r-- | languages/php/phpsupportpart.h | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/languages/php/phpcodecompletion.h b/languages/php/phpcodecompletion.h index dfee50c0..f922b09b 100644 --- a/languages/php/phpcodecompletion.h +++ b/languages/php/phpcodecompletion.h @@ -47,7 +47,7 @@ public: class PHPCodeCompletion : public TQObject { Q_OBJECT - TQ_OBJECT + public: PHPCodeCompletion(PHPSupportPart *phpSupport, PHPConfigData *config); diff --git a/languages/php/phpconfigdata.h b/languages/php/phpconfigdata.h index e5727ead..ab434e5a 100644 --- a/languages/php/phpconfigdata.h +++ b/languages/php/phpconfigdata.h @@ -30,7 +30,7 @@ class PHPConfigData : public TQObject { Q_OBJECT - TQ_OBJECT + signals: void configStored(); diff --git a/languages/php/phpconfigwidget.h b/languages/php/phpconfigwidget.h index 6fb4e926..5f1efdd6 100644 --- a/languages/php/phpconfigwidget.h +++ b/languages/php/phpconfigwidget.h @@ -9,7 +9,7 @@ class PHPConfigData; class PHPConfigWidget : public PHPConfigWidgetBase { Q_OBJECT - TQ_OBJECT + public: PHPConfigWidget( PHPConfigData* data,TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/languages/php/phperrorview.h b/languages/php/phperrorview.h index 70e373de..20eeb859 100644 --- a/languages/php/phperrorview.h +++ b/languages/php/phperrorview.h @@ -56,7 +56,7 @@ enum Errors class PHPErrorView: public TQWidget { Q_OBJECT - TQ_OBJECT + public: PHPErrorView( PHPSupportPart* part, TQWidget* parent=0, const char* name=0 ); virtual ~PHPErrorView(); diff --git a/languages/php/phpfile.h b/languages/php/phpfile.h index d790ca66..dbf18b63 100644 --- a/languages/php/phpfile.h +++ b/languages/php/phpfile.h @@ -47,7 +47,7 @@ */ class PHPFile : public TQObject { Q_OBJECT - TQ_OBJECT + public: PHPFile(PHPSupportPart *phpSupport, const TQString& fileName); diff --git a/languages/php/phphtmlview.h b/languages/php/phphtmlview.h index 91d4a195..e55be392 100644 --- a/languages/php/phphtmlview.h +++ b/languages/php/phphtmlview.h @@ -27,7 +27,7 @@ class PHPSupportPart; class PHPHTMLView : public KDevHTMLPart { Q_OBJECT - TQ_OBJECT + public: PHPHTMLView(PHPSupportPart *part); ~PHPHTMLView(); diff --git a/languages/php/phpnewclassdlg.h b/languages/php/phpnewclassdlg.h index 57086be5..1d7060e0 100644 --- a/languages/php/phpnewclassdlg.h +++ b/languages/php/phpnewclassdlg.h @@ -27,7 +27,7 @@ class PHPNewClassDlg : public PHPNewClassDlgBase { Q_OBJECT - TQ_OBJECT + public: PHPNewClassDlg(const TQStringList& baseClassNames,const TQString& directory,TQWidget *parent=0, const char *name=0); ~PHPNewClassDlg(); diff --git a/languages/php/phpsupportpart.h b/languages/php/phpsupportpart.h index b234e6dc..8e403f51 100644 --- a/languages/php/phpsupportpart.h +++ b/languages/php/phpsupportpart.h @@ -44,7 +44,7 @@ class PHPFile; class PHPSupportPart : public KDevLanguageSupport { Q_OBJECT - TQ_OBJECT + public: PHPSupportPart( TQObject *parent, const char *name, const TQStringList & ); |