From 860a15eba11559dd34e033b77359b3bc34ef2ce4 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 17 Feb 2012 15:58:59 -0600 Subject: [PATCH] Remove spurious TQ_OBJECT instances --- src/app/historyAction.h | 2 +- src/app/mainWindow.h | 2 +- src/part/part.h | 2 +- src/part/progressBox.h | 2 +- src/part/radialMap/widget.h | 2 +- src/part/remoteLister.h | 2 +- src/part/scan.h | 2 +- src/part/settingsDialog.h | 2 +- src/part/summaryWidget.h | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/historyAction.h b/src/app/historyAction.h index 0e5ad28..9ed65ab 100644 --- a/src/app/historyAction.h +++ b/src/app/historyAction.h @@ -40,7 +40,7 @@ private: class HistoryCollection : public TQObject { Q_OBJECT - TQ_OBJECT + public: HistoryCollection( KActionCollection *ac, TQObject *parent, const char *name ); diff --git a/src/app/mainWindow.h b/src/app/mainWindow.h index bef82d1..777a692 100644 --- a/src/app/mainWindow.h +++ b/src/app/mainWindow.h @@ -36,7 +36,7 @@ class Part; class MainWindow : public KParts::MainWindow { Q_OBJECT - TQ_OBJECT + public: MainWindow(); diff --git a/src/part/part.h b/src/part/part.h index 92bb7e3..f9be062 100644 --- a/src/part/part.h +++ b/src/part/part.h @@ -29,7 +29,7 @@ namespace Filelight class Part : public KParts::ReadOnlyPart { Q_OBJECT - TQ_OBJECT + public: Part( TQWidget *, const char *, TQObject *, const char *, const TQStringList& ); diff --git a/src/part/progressBox.h b/src/part/progressBox.h index acd605c..c7cf61e 100644 --- a/src/part/progressBox.h +++ b/src/part/progressBox.h @@ -13,7 +13,7 @@ namespace KIO { class Job; } class ProgressBox : public TQLabel { Q_OBJECT - TQ_OBJECT + public: ProgressBox( TQWidget*, TQObject* ); diff --git a/src/part/radialMap/widget.h b/src/part/radialMap/widget.h index 72ebd3d..61227a0 100644 --- a/src/part/radialMap/widget.h +++ b/src/part/radialMap/widget.h @@ -53,7 +53,7 @@ namespace RadialMap class Widget : public TQWidget { Q_OBJECT - TQ_OBJECT + public: Widget( TQWidget* = 0, const char* = 0 ); diff --git a/src/part/remoteLister.h b/src/part/remoteLister.h index 88fa24b..f284fc8 100644 --- a/src/part/remoteLister.h +++ b/src/part/remoteLister.h @@ -11,7 +11,7 @@ namespace Filelight class RemoteLister : public KDirLister { Q_OBJECT - TQ_OBJECT + public: RemoteLister( const KURL &url, TQWidget *parent ); ~RemoteLister(); diff --git a/src/part/scan.h b/src/part/scan.h index acd17dc..8ca66ec 100644 --- a/src/part/scan.h +++ b/src/part/scan.h @@ -16,7 +16,7 @@ namespace Filelight class ScanManager : public TQObject { Q_OBJECT - TQ_OBJECT + friend class LocalLister; friend class RemoteLister; diff --git a/src/part/settingsDialog.h b/src/part/settingsDialog.h index 2b81a9b..e929a8d 100644 --- a/src/part/settingsDialog.h +++ b/src/part/settingsDialog.h @@ -11,7 +11,7 @@ class SettingsDialog : public Dialog { Q_OBJECT - TQ_OBJECT + public: SettingsDialog( TQWidget* =0, const char* =0 ); diff --git a/src/part/summaryWidget.h b/src/part/summaryWidget.h index bc3a3e7..ddca7ef 100644 --- a/src/part/summaryWidget.h +++ b/src/part/summaryWidget.h @@ -10,7 +10,7 @@ class SummaryWidget : public TQWidget { Q_OBJECT - TQ_OBJECT + public: SummaryWidget( TQWidget *parent, const char *name );