From f36b477bbf0c70444dc72a25b376056ba9401628 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 17 Feb 2012 15:59:43 -0600 Subject: [PATCH] Remove spurious TQ_OBJECT instances --- 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 0966989..febcd81 100644 --- a/kiosktool/component.h +++ b/kiosktool/component.h @@ -24,7 +24,7 @@ class Component : public TQObject { Q_OBJECT - TQ_OBJECT + public: Component( TQObject *parent); virtual ~Component(); diff --git a/kiosktool/componentPage.h b/kiosktool/componentPage.h index 33452cd..81e21fd 100644 --- a/kiosktool/componentPage.h +++ b/kiosktool/componentPage.h @@ -29,7 +29,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 ); ~ComponentPage(); diff --git a/kiosktool/componentSelectionPage.h b/kiosktool/componentSelectionPage.h index cd02c83..c9366de 100644 --- a/kiosktool/componentSelectionPage.h +++ b/kiosktool/componentSelectionPage.h @@ -27,7 +27,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 ); ~ComponentSelectionPage(); diff --git a/kiosktool/desktopComponent.h b/kiosktool/desktopComponent.h index 3ce1c37..1b28c13 100644 --- a/kiosktool/desktopComponent.h +++ b/kiosktool/desktopComponent.h @@ -27,7 +27,7 @@ class DesktopComponent: public Component { Q_OBJECT - TQ_OBJECT + public: DesktopComponent( TQObject *parent = 0); virtual ~DesktopComponent(); diff --git a/kiosktool/filetypeeditComponent.h b/kiosktool/filetypeeditComponent.h index e6024db..2113bbd 100644 --- a/kiosktool/filetypeeditComponent.h +++ b/kiosktool/filetypeeditComponent.h @@ -27,7 +27,7 @@ class FileTypeEditComponent: public Component { Q_OBJECT - TQ_OBJECT + public: FileTypeEditComponent( TQObject *parent = 0); virtual ~FileTypeEditComponent(); diff --git a/kiosktool/kcms/autostart/kcmautostart.h b/kiosktool/kcms/autostart/kcmautostart.h index 6fe07c8..7970609 100644 --- a/kiosktool/kcms/autostart/kcmautostart.h +++ b/kiosktool/kcms/autostart/kcmautostart.h @@ -29,7 +29,7 @@ class TQPushButton; class AutoStartConfig : public KCModule { Q_OBJECT - TQ_OBJECT + public: AutoStartConfig(TQWidget* parent, const char* name= 0L, const TQStringList& foo = TQStringList()); ~AutoStartConfig() {}; @@ -54,7 +54,7 @@ private: class CheckListItem : public TQObject, public TQCheckListItem { Q_OBJECT - TQ_OBJECT + public: CheckListItem(TQListView* parent, const TQString &text); ~CheckListItem() { } diff --git a/kiosktool/kioskConfigDialog.h b/kiosktool/kioskConfigDialog.h index 94ca0e0..7695f40 100644 --- a/kiosktool/kioskConfigDialog.h +++ b/kiosktool/kioskConfigDialog.h @@ -26,7 +26,7 @@ class KioskConfigDialogUI; class KioskConfigDialog : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: KioskConfigDialog(TQWidget *parent); ~KioskConfigDialog(); diff --git a/kiosktool/kioskgui.h b/kiosktool/kioskgui.h index 86addfb..fe7e77c 100644 --- a/kiosktool/kioskgui.h +++ b/kiosktool/kioskgui.h @@ -38,7 +38,7 @@ class KToggleAction; class KioskGui : public KMainWindow { Q_OBJECT - TQ_OBJECT + public: enum { PAGE_PROFILE_SELECTION = 1, PAGE_COMPONENT_SELECTION = 2, diff --git a/kiosktool/kioskrun.h b/kiosktool/kioskrun.h index 0a11815..8aa0304 100644 --- a/kiosktool/kioskrun.h +++ b/kiosktool/kioskrun.h @@ -42,7 +42,7 @@ class KioskRun : public TQObject friend class KioskGui; Q_OBJECT - TQ_OBJECT + public: static KioskRun* self() { return s_self; } @@ -214,7 +214,7 @@ private: class KioskRunProgressDialog : public KProgressDialog { Q_OBJECT - TQ_OBJECT + public: KioskRunProgressDialog(TQWidget *parent, const char *name, const TQString &caption, const TQString &text); diff --git a/kiosktool/kiosksync.h b/kiosktool/kiosksync.h index 1879eb2..9218f77 100644 --- a/kiosktool/kiosksync.h +++ b/kiosktool/kiosksync.h @@ -32,7 +32,7 @@ class KSimpleConfig; class KioskSync : public TQObject { Q_OBJECT - TQ_OBJECT + public: KioskSync( TQWidget* parent = 0, const char* name = 0); ~KioskSync(); diff --git a/kiosktool/menueditComponent.h b/kiosktool/menueditComponent.h index 360a4f8..cea42a0 100644 --- a/kiosktool/menueditComponent.h +++ b/kiosktool/menueditComponent.h @@ -27,7 +27,7 @@ class MenuEditComponent: public Component { Q_OBJECT - TQ_OBJECT + public: MenuEditComponent( TQObject *parent = 0); virtual ~MenuEditComponent(); diff --git a/kiosktool/panelComponent.h b/kiosktool/panelComponent.h index 90e79a8..05fac1b 100644 --- a/kiosktool/panelComponent.h +++ b/kiosktool/panelComponent.h @@ -27,7 +27,7 @@ class PanelComponent: public Component { Q_OBJECT - TQ_OBJECT + public: PanelComponent( TQObject *parent = 0); virtual ~PanelComponent(); diff --git a/kiosktool/profilePropsPage.h b/kiosktool/profilePropsPage.h index c165884..446ae5d 100644 --- a/kiosktool/profilePropsPage.h +++ b/kiosktool/profilePropsPage.h @@ -25,7 +25,7 @@ class ProfilePropsPage : public ProfilePropsPageUI, public PageWidget { Q_OBJECT - TQ_OBJECT + public: ProfilePropsPage(TQWidget *parent, const TQString &profile); ~ProfilePropsPage(); diff --git a/kiosktool/screensaverComponent.h b/kiosktool/screensaverComponent.h index 5e62a81..5c507f8 100644 --- a/kiosktool/screensaverComponent.h +++ b/kiosktool/screensaverComponent.h @@ -26,7 +26,7 @@ class ScreenSaverComponent: public Component { Q_OBJECT - TQ_OBJECT + public: ScreenSaverComponent( TQObject *parent = 0); virtual ~ScreenSaverComponent(); diff --git a/kiosktool/userManagement.h b/kiosktool/userManagement.h index 47317a6..309e764 100644 --- a/kiosktool/userManagement.h +++ b/kiosktool/userManagement.h @@ -27,7 +27,7 @@ class UserManagementUI; class UserManagementPage : public UserManagementUI, public PageWidget { Q_OBJECT - TQ_OBJECT + public: UserManagementPage(TQWidget* parent, const char* name = 0, WFlags fl = 0); ~UserManagementPage();