diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:07:57 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-21 17:28:49 +0900 |
commit | 9c40420b261ea30555cabc299829028ee345b9e5 (patch) | |
tree | 0bec930107d651516239f2592512b2057b9f5452 /languages/php | |
parent | 3f9cda007f52077d533117c4fa2441629ad9d796 (diff) | |
download | tdevelop-9c40420b261ea30555cabc299829028ee345b9e5.tar.gz tdevelop-9c40420b261ea30555cabc299829028ee345b9e5.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 65905878..3277a64d 100644 --- a/languages/php/phpcodecompletion.h +++ b/languages/php/phpcodecompletion.h @@ -46,7 +46,7 @@ public: }; class PHPCodeCompletion : public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/languages/php/phpconfigdata.h b/languages/php/phpconfigdata.h index 40cf07f8..e5840034 100644 --- a/languages/php/phpconfigdata.h +++ b/languages/php/phpconfigdata.h @@ -29,7 +29,7 @@ */ class PHPConfigData : public TQObject { -Q_OBJECT +TQ_OBJECT signals: diff --git a/languages/php/phpconfigwidget.h b/languages/php/phpconfigwidget.h index 185740fe..8ff34195 100644 --- a/languages/php/phpconfigwidget.h +++ b/languages/php/phpconfigwidget.h @@ -8,7 +8,7 @@ class PHPConfigData; class PHPConfigWidget : public PHPConfigWidgetBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/languages/php/phperrorview.h b/languages/php/phperrorview.h index ced798a6..d7f2e73b 100644 --- a/languages/php/phperrorview.h +++ b/languages/php/phperrorview.h @@ -55,7 +55,7 @@ enum Errors }; class PHPErrorView: public TQWidget { -Q_OBJECT +TQ_OBJECT public: PHPErrorView( PHPSupportPart* part, TQWidget* parent=0, const char* name=0 ); diff --git a/languages/php/phpfile.h b/languages/php/phpfile.h index ac5a4525..da4da636 100644 --- a/languages/php/phpfile.h +++ b/languages/php/phpfile.h @@ -46,7 +46,7 @@ @author Escuder Nicolas */ class PHPFile : public TQObject { -Q_OBJECT +TQ_OBJECT public: diff --git a/languages/php/phphtmlview.h b/languages/php/phphtmlview.h index e55be392..77ab302d 100644 --- a/languages/php/phphtmlview.h +++ b/languages/php/phphtmlview.h @@ -26,7 +26,7 @@ class PHPSupportPart; class PHPHTMLView : public KDevHTMLPart { -Q_OBJECT +TQ_OBJECT public: PHPHTMLView(PHPSupportPart *part); diff --git a/languages/php/phpnewclassdlg.h b/languages/php/phpnewclassdlg.h index 91c832e4..bf1a10e5 100644 --- a/languages/php/phpnewclassdlg.h +++ b/languages/php/phpnewclassdlg.h @@ -26,7 +26,7 @@ */ class PHPNewClassDlg : public PHPNewClassDlgBase { - Q_OBJECT + TQ_OBJECT public: PHPNewClassDlg(const TQStringList& baseClassNames,const TQString& directory,TQWidget *parent=0, const char *name=0); diff --git a/languages/php/phpsupportpart.h b/languages/php/phpsupportpart.h index 4dca877b..a3f0e9e8 100644 --- a/languages/php/phpsupportpart.h +++ b/languages/php/phpsupportpart.h @@ -43,7 +43,7 @@ class PHPFile; class PHPSupportPart : public KDevLanguageSupport { - Q_OBJECT + TQ_OBJECT public: |