diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:05:43 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:05:43 -0600 |
commit | 28166400a4ac95793e5adb51721722e8656ebe4a (patch) | |
tree | 335bf692046a5d4cc10b2dc3f8beaa350c9607cb /noatun-plugins/oblique | |
parent | 2e53a31f139e370203f5a947a44d8daa8addcbe9 (diff) | |
download | tdeaddons-28166400a4ac95793e5adb51721722e8656ebe4a.tar.gz tdeaddons-28166400a4ac95793e5adb51721722e8656ebe4a.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'noatun-plugins/oblique')
-rw-r--r-- | noatun-plugins/oblique/base.h | 2 | ||||
-rw-r--r-- | noatun-plugins/oblique/cmodule.h | 6 | ||||
-rw-r--r-- | noatun-plugins/oblique/menu.h | 8 | ||||
-rw-r--r-- | noatun-plugins/oblique/oblique.h | 6 | ||||
-rw-r--r-- | noatun-plugins/oblique/tree.h | 2 | ||||
-rw-r--r-- | noatun-plugins/oblique/view.h | 4 |
6 files changed, 14 insertions, 14 deletions
diff --git a/noatun-plugins/oblique/base.h b/noatun-plugins/oblique/base.h index 4652343..6c3bea8 100644 --- a/noatun-plugins/oblique/base.h +++ b/noatun-plugins/oblique/base.h @@ -18,7 +18,7 @@ typedef unsigned int FileId; class Base : public TQObject { Q_OBJECT - TQ_OBJECT + struct Private; Private *d; // not for BC, but for compile times :) diff --git a/noatun-plugins/oblique/cmodule.h b/noatun-plugins/oblique/cmodule.h index 45570ed..6455758 100644 --- a/noatun-plugins/oblique/cmodule.h +++ b/noatun-plugins/oblique/cmodule.h @@ -19,7 +19,7 @@ class TQTabWidget; class SchemaConfig : public TQWidget { Q_OBJECT - TQ_OBJECT + Oblique *mOblique; KListView *mSchemaTree; @@ -85,7 +85,7 @@ class SliceListItem; class SliceConfig : public TQWidget { Q_OBJECT - TQ_OBJECT + Oblique *mOblique; KListView *mSliceList; TQPushButton *mAdd, *mRemove; @@ -110,7 +110,7 @@ private slots: class Configure : public CModule { Q_OBJECT - TQ_OBJECT + TQTabWidget *tabs; SchemaConfig *schema; SliceConfig *slice; diff --git a/noatun-plugins/oblique/menu.h b/noatun-plugins/oblique/menu.h index e6adbac..0b4e509 100644 --- a/noatun-plugins/oblique/menu.h +++ b/noatun-plugins/oblique/menu.h @@ -17,7 +17,7 @@ class FileMenu : public KPopupMenu { Q_OBJECT - TQ_OBJECT + TQValueList<File> mFiles; public: @@ -36,7 +36,7 @@ private slots: class SliceListAction : public KActionMenu { Q_OBJECT - TQ_OBJECT + TQMap<int, Slice*> mIndexToSlices; TQValueList<File> mFiles; Oblique *mOblique; @@ -60,7 +60,7 @@ private slots: class SchemaListAction : public KActionMenu { Q_OBJECT - TQ_OBJECT + TQMap<int, TQString> mIndexToSchemas; Tree *mTree; @@ -85,7 +85,7 @@ private slots: class ObliquePropertiesDialog : public KPropertiesDialog { Q_OBJECT - TQ_OBJECT + TQValueList<File> mFiles; public: diff --git a/noatun-plugins/oblique/oblique.h b/noatun-plugins/oblique/oblique.h index 8755e55..096f936 100644 --- a/noatun-plugins/oblique/oblique.h +++ b/noatun-plugins/oblique/oblique.h @@ -27,7 +27,7 @@ namespace KIO class Oblique : public Playlist, public Plugin { Q_OBJECT - TQ_OBJECT + View *mView; Base *mBase; Selector *mSelector; @@ -90,7 +90,7 @@ private slots: class Loader : public TQObject { Q_OBJECT - TQ_OBJECT + // the id of the next file to load FileId mDeferredLoaderAt; Tree *mTree; @@ -114,7 +114,7 @@ private slots: class DirectoryAdder : public TQObject { Q_OBJECT - TQ_OBJECT + Oblique *mOblique; KURL::List pendingAddDirectories; KURL::List::Iterator lastAddedSubDirectory; diff --git a/noatun-plugins/oblique/tree.h b/noatun-plugins/oblique/tree.h index 4e5ca83..4e8317c 100644 --- a/noatun-plugins/oblique/tree.h +++ b/noatun-plugins/oblique/tree.h @@ -86,7 +86,7 @@ class Loader; class Tree : public KListView { Q_OBJECT - TQ_OBJECT + Oblique *mOblique; Query mQuery; diff --git a/noatun-plugins/oblique/view.h b/noatun-plugins/oblique/view.h index b9d2a09..86ecece 100644 --- a/noatun-plugins/oblique/view.h +++ b/noatun-plugins/oblique/view.h @@ -16,7 +16,7 @@ class TabWidget; class View : public KMainWindow { Q_OBJECT - TQ_OBJECT + Oblique *mOblique; Tree *mTree; TQValueList<Tree*> mTrees; @@ -60,7 +60,7 @@ protected: class LineEditAction : public KWidgetAction { Q_OBJECT - TQ_OBJECT + public: LineEditAction(const TQString &text, const TQObject *reciever, const char *slot, KActionCollection *parent, const char *name); |