From c81816ddb41c45a6fef1e0b8e854f6b27bf78b39 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 20 Jul 2023 14:02:25 +0900 Subject: [PATCH] Replace Q_OBJECT with TQ_OBJECT Signed-off-by: Michele Calgaro --- configdialog/kbfxconfigapp.h | 2 +- kbfxlib/common/kbfxfontchooser.h | 2 +- kbfxlib/common/kbfxkiodownload.h | 2 +- kbfxlib/common/kbfxpixmaplabel.h | 2 +- kbfxlib/common/kbfxpushbutton.h | 2 +- kbfxlib/data/kbfxplasmapluginloader.h | 2 +- kbfxlib/data/kbfxplugin.h | 2 +- src/kbfxbutton.h | 2 +- src/kbfxplasmacanvasabstractitem.h | 2 +- src/kbfxplasmacanvasgroup.h | 2 +- src/kbfxplasmacanvasgroupview.h | 2 +- src/kbfxplasmacanvasitem.h | 2 +- src/kbfxplasmacanvasitemwrapper.h | 2 +- src/kbfxplasmacanvasstack.h | 2 +- src/kbfxplasmacanvasview.h | 2 +- src/kbfxplasmaindexitem.h | 2 +- src/kbfxplasmaindexview.h | 2 +- src/kbfxspinx.h | 2 +- src/kbfxspinxmenu.h | 2 +- src/kbfxspinxpopup.h | 2 +- src/kbfxspinxscrollbar.h | 2 +- src/kbfxspinxtoolbar.h | 2 +- src/kbfxspinxtoolbutton.h | 2 +- src/kbfxspinxtop.h | 2 +- src/kbfxspinxview.h | 2 +- src/kbfxtooltip.h | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/configdialog/kbfxconfigapp.h b/configdialog/kbfxconfigapp.h index 40b3a2c..91da0cd 100644 --- a/configdialog/kbfxconfigapp.h +++ b/configdialog/kbfxconfigapp.h @@ -88,7 +88,7 @@ enum {THEMES=0, BUTTON, FONTS, LAYOUT, PLUGINS, TOOLTIP, STYLE, ABOUT}; class KbfxConfigApp : public KbfxConfigDlgMain { - Q_OBJECT + TQ_OBJECT public: /** diff --git a/kbfxlib/common/kbfxfontchooser.h b/kbfxlib/common/kbfxfontchooser.h index 790d801..28c2c60 100644 --- a/kbfxlib/common/kbfxfontchooser.h +++ b/kbfxlib/common/kbfxfontchooser.h @@ -41,7 +41,7 @@ class TQFont; class KBFXFontChooser : public TQWidget { - Q_OBJECT + TQ_OBJECT TQ_PROPERTY ( TQFont font READ font WRITE setFont ) public: diff --git a/kbfxlib/common/kbfxkiodownload.h b/kbfxlib/common/kbfxkiodownload.h index c40f8ee..9ebbb67 100644 --- a/kbfxlib/common/kbfxkiodownload.h +++ b/kbfxlib/common/kbfxkiodownload.h @@ -31,7 +31,7 @@ */ class KbfxKioDownload : public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/kbfxlib/common/kbfxpixmaplabel.h b/kbfxlib/common/kbfxpixmaplabel.h index 36bb95a..53c24be 100644 --- a/kbfxlib/common/kbfxpixmaplabel.h +++ b/kbfxlib/common/kbfxpixmaplabel.h @@ -29,7 +29,7 @@ class KbfxPixmapLabel : public TQLabel { - Q_OBJECT + TQ_OBJECT public: diff --git a/kbfxlib/common/kbfxpushbutton.h b/kbfxlib/common/kbfxpushbutton.h index 87c1b8f..57c81c7 100644 --- a/kbfxlib/common/kbfxpushbutton.h +++ b/kbfxlib/common/kbfxpushbutton.h @@ -28,7 +28,7 @@ class KbfxPushButton: public KPushButton { - Q_OBJECT + TQ_OBJECT public: diff --git a/kbfxlib/data/kbfxplasmapluginloader.h b/kbfxlib/data/kbfxplasmapluginloader.h index da57600..1adf429 100644 --- a/kbfxlib/data/kbfxplasmapluginloader.h +++ b/kbfxlib/data/kbfxplasmapluginloader.h @@ -30,7 +30,7 @@ class KbfxPlasmaPluginLoader:public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/kbfxlib/data/kbfxplugin.h b/kbfxlib/data/kbfxplugin.h index 9f9e723..270fffe 100644 --- a/kbfxlib/data/kbfxplugin.h +++ b/kbfxlib/data/kbfxplugin.h @@ -37,7 +37,7 @@ of the menu class KbfxPlugin:public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/src/kbfxbutton.h b/src/kbfxbutton.h index 8063760..731e864 100644 --- a/src/kbfxbutton.h +++ b/src/kbfxbutton.h @@ -47,7 +47,7 @@ class TQLabel; class KbfxButton:public TQLabel { - Q_OBJECT + TQ_OBJECT public: diff --git a/src/kbfxplasmacanvasabstractitem.h b/src/kbfxplasmacanvasabstractitem.h index 7cb4ecf..f4733e5 100644 --- a/src/kbfxplasmacanvasabstractitem.h +++ b/src/kbfxplasmacanvasabstractitem.h @@ -35,7 +35,7 @@ class KbfxPlasmaCanvasAbstractItem:public TQObject,public TQCanvasSprite { - Q_OBJECT + TQ_OBJECT public: diff --git a/src/kbfxplasmacanvasgroup.h b/src/kbfxplasmacanvasgroup.h index 455680a..3077f54 100644 --- a/src/kbfxplasmacanvasgroup.h +++ b/src/kbfxplasmacanvasgroup.h @@ -32,7 +32,7 @@ class TQRect; class KbfxPlasmaCanvasGroup:public TQObject { - Q_OBJECT + TQ_OBJECT public: typedef TQPtrList ItemList; diff --git a/src/kbfxplasmacanvasgroupview.h b/src/kbfxplasmacanvasgroupview.h index 377e14d..9b8e9c3 100644 --- a/src/kbfxplasmacanvasgroupview.h +++ b/src/kbfxplasmacanvasgroupview.h @@ -34,7 +34,7 @@ This class will manager a list of Groups. class KbfxPlasmaCanvasGroupView:public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/src/kbfxplasmacanvasitem.h b/src/kbfxplasmacanvasitem.h index 8d7c4eb..d715cdc 100644 --- a/src/kbfxplasmacanvasitem.h +++ b/src/kbfxplasmacanvasitem.h @@ -40,7 +40,7 @@ class KbfxPlasmaCanvasItem:public KbfxPlasmaCanvasAbstractItem { - Q_OBJECT + TQ_OBJECT public: diff --git a/src/kbfxplasmacanvasitemwrapper.h b/src/kbfxplasmacanvasitemwrapper.h index c69af84..4f61bd8 100644 --- a/src/kbfxplasmacanvasitemwrapper.h +++ b/src/kbfxplasmacanvasitemwrapper.h @@ -30,7 +30,7 @@ class KbfxPlasmaCanvasItemWrapper:public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/src/kbfxplasmacanvasstack.h b/src/kbfxplasmacanvasstack.h index e3e3f96..83a51db 100644 --- a/src/kbfxplasmacanvasstack.h +++ b/src/kbfxplasmacanvasstack.h @@ -36,7 +36,7 @@ This class will manager a list of Grouplists. class KbfxPlasmaCanvasStack:public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/src/kbfxplasmacanvasview.h b/src/kbfxplasmacanvasview.h index 0af01a8..d71b6b8 100644 --- a/src/kbfxplasmacanvasview.h +++ b/src/kbfxplasmacanvasview.h @@ -51,7 +51,7 @@ class TQCanvasView; class KbfxPlasmaCanvasView : public TQCanvasView { - Q_OBJECT + TQ_OBJECT public: diff --git a/src/kbfxplasmaindexitem.h b/src/kbfxplasmaindexitem.h index 8b53af3..d111587 100644 --- a/src/kbfxplasmaindexitem.h +++ b/src/kbfxplasmaindexitem.h @@ -26,7 +26,7 @@ class KbfxPlasmaIndexItem : public KbfxPlasmaCanvasAbstractItem { - Q_OBJECT + TQ_OBJECT public: diff --git a/src/kbfxplasmaindexview.h b/src/kbfxplasmaindexview.h index f07bd83..eb3c22c 100644 --- a/src/kbfxplasmaindexview.h +++ b/src/kbfxplasmaindexview.h @@ -42,7 +42,7 @@ class KbfxPlasmaIndexView : public TQCanvasView { - Q_OBJECT + TQ_OBJECT public: diff --git a/src/kbfxspinx.h b/src/kbfxspinx.h index 3941c16..205080d 100644 --- a/src/kbfxspinx.h +++ b/src/kbfxspinx.h @@ -62,7 +62,7 @@ class KbfxSpinx : public KPanelApplet,public DCOPObject { K_DCOP - Q_OBJECT + TQ_OBJECT // public: diff --git a/src/kbfxspinxmenu.h b/src/kbfxspinxmenu.h index 9fe2d29..b740856 100644 --- a/src/kbfxspinxmenu.h +++ b/src/kbfxspinxmenu.h @@ -61,7 +61,7 @@ class KbfxSpinxMenuWidget:public TQWidget { - Q_OBJECT + TQ_OBJECT public : KbfxSpinxMenuWidget ( TQWidget * parent = 0, const char * name = 0,WFlags fl =0 ); diff --git a/src/kbfxspinxpopup.h b/src/kbfxspinxpopup.h index a1f63fa..e837cad 100644 --- a/src/kbfxspinxpopup.h +++ b/src/kbfxspinxpopup.h @@ -43,7 +43,7 @@ */ class KbfxSpinxPopUp : public TQPopupMenu { - Q_OBJECT + TQ_OBJECT public: diff --git a/src/kbfxspinxscrollbar.h b/src/kbfxspinxscrollbar.h index 6f4182f..c0b074f 100644 --- a/src/kbfxspinxscrollbar.h +++ b/src/kbfxspinxscrollbar.h @@ -37,7 +37,7 @@ class TQWidget; class KbfxSpinxScrollBar:public TQWidget { - Q_OBJECT + TQ_OBJECT public: typedef enum {UP,DOWN,LEFT,RIGHT} Direction; diff --git a/src/kbfxspinxtoolbar.h b/src/kbfxspinxtoolbar.h index 20e4988..f62c3dd 100644 --- a/src/kbfxspinxtoolbar.h +++ b/src/kbfxspinxtoolbar.h @@ -35,7 +35,7 @@ class KbfxSpinxToolBar:public TQWidget { - Q_OBJECT + TQ_OBJECT public: KbfxSpinxToolBar ( TQWidget * parent = 0, const char * name = 0, WFlags f = 0 ); diff --git a/src/kbfxspinxtoolbutton.h b/src/kbfxspinxtoolbutton.h index 42956f7..660207a 100644 --- a/src/kbfxspinxtoolbutton.h +++ b/src/kbfxspinxtoolbutton.h @@ -43,7 +43,7 @@ class KbfxSpinxToolButton:public TQLabel { - Q_OBJECT + TQ_OBJECT public: typedef enum{SINGLE=0,EXPANDABLE} ButtonType; diff --git a/src/kbfxspinxtop.h b/src/kbfxspinxtop.h index a8cb187..79b079a 100644 --- a/src/kbfxspinxtop.h +++ b/src/kbfxspinxtop.h @@ -36,7 +36,7 @@ class KbfxSpinxTop:public TQWidget { - Q_OBJECT + TQ_OBJECT public: diff --git a/src/kbfxspinxview.h b/src/kbfxspinxview.h index 5bb9489..2ef048f 100644 --- a/src/kbfxspinxview.h +++ b/src/kbfxspinxview.h @@ -27,7 +27,7 @@ class KbfxSpinxView:public TQFrame { - Q_OBJECT + TQ_OBJECT public: diff --git a/src/kbfxtooltip.h b/src/kbfxtooltip.h index d1d3fc6..b7be39e 100644 --- a/src/kbfxtooltip.h +++ b/src/kbfxtooltip.h @@ -45,7 +45,7 @@ class KbfxToolTip:public TQWidget { - Q_OBJECT + TQ_OBJECT public: KbfxToolTip ( TQWidget * parent=0,const char * name=0,WFlags fl=WType_TopLevel );