From 31cbeff20c2789812251184bf0f982cb6c2e71c3 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 20 Jul 2023 13:56:03 +0900 Subject: Replace Q_OBJECT with TQ_OBJECT Signed-off-by: Michele Calgaro --- kiosktool/component.h | 2 +- kiosktool/componentPage.h | 2 +- kiosktool/componentSelectionPage.h | 2 +- kiosktool/desktopComponent.h | 2 +- kiosktool/filetypeeditComponent.h | 2 +- kiosktool/kcms/autostart/kcmautostart.h | 4 ++-- kiosktool/kioskConfigDialog.h | 2 +- kiosktool/kioskgui.h | 2 +- kiosktool/kioskrun.h | 4 ++-- kiosktool/kiosksync.h | 2 +- kiosktool/menueditComponent.h | 2 +- kiosktool/panelComponent.h | 2 +- kiosktool/profilePropsPage.h | 2 +- kiosktool/screensaverComponent.h | 2 +- kiosktool/userManagement.h | 2 +- 15 files changed, 17 insertions(+), 17 deletions(-) diff --git a/kiosktool/component.h b/kiosktool/component.h index febcd81..138a6dd 100644 --- a/kiosktool/component.h +++ b/kiosktool/component.h @@ -23,7 +23,7 @@ class Component : public TQObject { - Q_OBJECT + TQ_OBJECT public: Component( TQObject *parent); diff --git a/kiosktool/componentPage.h b/kiosktool/componentPage.h index 8e0e716..f94d84b 100644 --- a/kiosktool/componentPage.h +++ b/kiosktool/componentPage.h @@ -28,7 +28,7 @@ class ComponentData; class ComponentPage : public ComponentPageUI, public PageWidget { - Q_OBJECT + TQ_OBJECT public: ComponentPage( ComponentData *data, Component *component, TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/kiosktool/componentSelectionPage.h b/kiosktool/componentSelectionPage.h index c9366de..94e6783 100644 --- a/kiosktool/componentSelectionPage.h +++ b/kiosktool/componentSelectionPage.h @@ -26,7 +26,7 @@ class KioskData; class ComponentSelectionPage : public ComponentSelectionPageUI, public PageWidget { - Q_OBJECT + TQ_OBJECT public: ComponentSelectionPage( KioskData *data, TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); diff --git a/kiosktool/desktopComponent.h b/kiosktool/desktopComponent.h index 1b28c13..17167b2 100644 --- a/kiosktool/desktopComponent.h +++ b/kiosktool/desktopComponent.h @@ -26,7 +26,7 @@ class DesktopComponent: public Component { - Q_OBJECT + TQ_OBJECT public: DesktopComponent( TQObject *parent = 0); diff --git a/kiosktool/filetypeeditComponent.h b/kiosktool/filetypeeditComponent.h index 2113bbd..4f5a114 100644 --- a/kiosktool/filetypeeditComponent.h +++ b/kiosktool/filetypeeditComponent.h @@ -26,7 +26,7 @@ class FileTypeEditComponent: public Component { - Q_OBJECT + TQ_OBJECT public: FileTypeEditComponent( TQObject *parent = 0); diff --git a/kiosktool/kcms/autostart/kcmautostart.h b/kiosktool/kcms/autostart/kcmautostart.h index dcfe25a..7265e3e 100644 --- a/kiosktool/kcms/autostart/kcmautostart.h +++ b/kiosktool/kcms/autostart/kcmautostart.h @@ -28,7 +28,7 @@ class TQPushButton; class AutoStartConfig : public TDECModule { -Q_OBJECT +TQ_OBJECT public: AutoStartConfig(TQWidget* parent, const char* name= 0L, const TQStringList& foo = TQStringList()); @@ -53,7 +53,7 @@ private: class CheckListItem : public TQObject, public TQCheckListItem { - Q_OBJECT + TQ_OBJECT public: CheckListItem(TQListView* parent, const TQString &text); diff --git a/kiosktool/kioskConfigDialog.h b/kiosktool/kioskConfigDialog.h index 7695f40..d6b883b 100644 --- a/kiosktool/kioskConfigDialog.h +++ b/kiosktool/kioskConfigDialog.h @@ -25,7 +25,7 @@ class KioskConfigDialogUI; class KioskConfigDialog : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: KioskConfigDialog(TQWidget *parent); diff --git a/kiosktool/kioskgui.h b/kiosktool/kioskgui.h index 94b3356..c4d0e6e 100644 --- a/kiosktool/kioskgui.h +++ b/kiosktool/kioskgui.h @@ -37,7 +37,7 @@ class TDEToggleAction; class KioskGui : public TDEMainWindow { - Q_OBJECT + TQ_OBJECT public: enum { PAGE_PROFILE_SELECTION = 1, diff --git a/kiosktool/kioskrun.h b/kiosktool/kioskrun.h index 4275cb3..ffb4b4d 100644 --- a/kiosktool/kioskrun.h +++ b/kiosktool/kioskrun.h @@ -41,7 +41,7 @@ class KioskRun : public TQObject { friend class KioskGui; - Q_OBJECT + TQ_OBJECT public: static KioskRun* self() { return s_self; } @@ -213,7 +213,7 @@ private: class KioskRunProgressDialog : public KProgressDialog { - Q_OBJECT + TQ_OBJECT public: KioskRunProgressDialog(TQWidget *parent, const char *name, diff --git a/kiosktool/kiosksync.h b/kiosktool/kiosksync.h index 9218f77..58dd785 100644 --- a/kiosktool/kiosksync.h +++ b/kiosktool/kiosksync.h @@ -31,7 +31,7 @@ class KSimpleConfig; class KioskSync : public TQObject { - Q_OBJECT + TQ_OBJECT public: KioskSync( TQWidget* parent = 0, const char* name = 0); diff --git a/kiosktool/menueditComponent.h b/kiosktool/menueditComponent.h index cea42a0..594280f 100644 --- a/kiosktool/menueditComponent.h +++ b/kiosktool/menueditComponent.h @@ -26,7 +26,7 @@ class MenuEditComponent: public Component { - Q_OBJECT + TQ_OBJECT public: MenuEditComponent( TQObject *parent = 0); diff --git a/kiosktool/panelComponent.h b/kiosktool/panelComponent.h index 05fac1b..093cc84 100644 --- a/kiosktool/panelComponent.h +++ b/kiosktool/panelComponent.h @@ -26,7 +26,7 @@ class PanelComponent: public Component { - Q_OBJECT + TQ_OBJECT public: PanelComponent( TQObject *parent = 0); diff --git a/kiosktool/profilePropsPage.h b/kiosktool/profilePropsPage.h index 446ae5d..40421a2 100644 --- a/kiosktool/profilePropsPage.h +++ b/kiosktool/profilePropsPage.h @@ -24,7 +24,7 @@ class ProfilePropsPage : public ProfilePropsPageUI, public PageWidget { - Q_OBJECT + TQ_OBJECT public: ProfilePropsPage(TQWidget *parent, const TQString &profile); diff --git a/kiosktool/screensaverComponent.h b/kiosktool/screensaverComponent.h index 5c507f8..609e8c9 100644 --- a/kiosktool/screensaverComponent.h +++ b/kiosktool/screensaverComponent.h @@ -25,7 +25,7 @@ class ScreenSaverComponent: public Component { - Q_OBJECT + TQ_OBJECT public: ScreenSaverComponent( TQObject *parent = 0); diff --git a/kiosktool/userManagement.h b/kiosktool/userManagement.h index 309e764..a013be5 100644 --- a/kiosktool/userManagement.h +++ b/kiosktool/userManagement.h @@ -26,7 +26,7 @@ class UserManagementUI; class UserManagementPage : public UserManagementUI, public PageWidget { - Q_OBJECT + TQ_OBJECT public: UserManagementPage(TQWidget* parent, const char* name = 0, WFlags fl = 0); -- cgit v1.2.3