diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:00:54 -0600 |
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:00:54 -0600 |
| commit | 3c4deb14c187d5c7f35b1a3ec02eff4d2bbe2e47 (patch) | |
| tree | 31c3e407c1757c6e3c7acd75bda8887d58a9026f /krusader/Panel | |
| parent | 540d21c84c0b5504af5b55039c8fd795d56ff650 (diff) | |
| download | krusader-3c4deb14c187d5c7f35b1a3ec02eff4d2bbe2e47.tar.gz krusader-3c4deb14c187d5c7f35b1a3ec02eff4d2bbe2e47.zip | |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'krusader/Panel')
| -rw-r--r-- | krusader/Panel/krbriefview.h | 2 | ||||
| -rw-r--r-- | krusader/Panel/krcalcspacedialog.h | 2 | ||||
| -rw-r--r-- | krusader/Panel/krcolorcache.h | 2 | ||||
| -rw-r--r-- | krusader/Panel/krdetailedview.h | 2 | ||||
| -rw-r--r-- | krusader/Panel/krdrag.h | 2 | ||||
| -rw-r--r-- | krusader/Panel/krpopupmenu.h | 2 | ||||
| -rw-r--r-- | krusader/Panel/krpreviewpopup.h | 2 | ||||
| -rw-r--r-- | krusader/Panel/krview.h | 2 | ||||
| -rw-r--r-- | krusader/Panel/listpanel.h | 2 | ||||
| -rw-r--r-- | krusader/Panel/panelfunc.h | 2 | ||||
| -rw-r--r-- | krusader/Panel/panelpopup.h | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/krusader/Panel/krbriefview.h b/krusader/Panel/krbriefview.h index e6c7c1a..e53d8fd 100644 --- a/krusader/Panel/krbriefview.h +++ b/krusader/Panel/krbriefview.h @@ -56,7 +56,7 @@ class TQHeader; class KrBriefView: public KIconView, public KrView { friend class KrBriefViewItem; Q_OBJECT - TQ_OBJECT + public: KrBriefView( TQHeader *header, TQWidget *parent, bool &left, KConfig *cfg = krConfig, const char *name = 0 ); virtual ~KrBriefView(); diff --git a/krusader/Panel/krcalcspacedialog.h b/krusader/Panel/krcalcspacedialog.h index e1363d8..f729ddb 100644 --- a/krusader/Panel/krcalcspacedialog.h +++ b/krusader/Panel/krcalcspacedialog.h @@ -53,7 +53,7 @@ class KrView; */ class KrCalcSpaceDialog : public KDialogBase{ Q_OBJECT - TQ_OBJECT + /* Thread which does the actual calculation. Deletes itself, if no longer needed. Creator must call finished(), if the thread is no longer needed. */ diff --git a/krusader/Panel/krcolorcache.h b/krusader/Panel/krcolorcache.h index 245a338..c279f2b 100644 --- a/krusader/Panel/krcolorcache.h +++ b/krusader/Panel/krcolorcache.h @@ -81,7 +81,7 @@ setColors should NEVER be called! class KrColorCache : public TQObject { Q_OBJECT - TQ_OBJECT + static KrColorCache * m_instance; class KrColorCacheImpl * m_impl; KrColorCache(const KrColorCache &); diff --git a/krusader/Panel/krdetailedview.h b/krusader/Panel/krdetailedview.h index 40741c1..6d902ea 100644 --- a/krusader/Panel/krdetailedview.h +++ b/krusader/Panel/krdetailedview.h @@ -71,7 +71,7 @@ class KrDetailedViewItem; */ class KrDetailedView : public KListView, public KrView { Q_OBJECT - TQ_OBJECT + friend class KrDetailedViewItem; public: diff --git a/krusader/Panel/krdrag.h b/krusader/Panel/krdrag.h index 400294e..5ad06e5 100644 --- a/krusader/Panel/krdrag.h +++ b/krusader/Panel/krdrag.h @@ -37,7 +37,7 @@ YP YD 88 YD ~Y8888P' `8888Y' YP YP Y8888D' Y88888P 88 YD class KRDrag : public TQUriDrag { Q_OBJECT - TQ_OBJECT + public: static KRDrag * newDrag( const KURL::List & urls, bool move, TQWidget * dragSource = 0, const char* name = 0 ); diff --git a/krusader/Panel/krpopupmenu.h b/krusader/Panel/krpopupmenu.h index b2f3db4..0b40aaa 100644 --- a/krusader/Panel/krpopupmenu.h +++ b/krusader/Panel/krpopupmenu.h @@ -15,7 +15,7 @@ // should be renamed to KrContextMenu or similar class KrPopupMenu : public KPopupMenu { Q_OBJECT - TQ_OBJECT + public: static void run(const TQPoint &pos, ListPanel *panel); diff --git a/krusader/Panel/krpreviewpopup.h b/krusader/Panel/krpreviewpopup.h index 6aafeaf..607ef31 100644 --- a/krusader/Panel/krpreviewpopup.h +++ b/krusader/Panel/krpreviewpopup.h @@ -29,7 +29,7 @@ class KrPreviewPopup : public TQPopupMenu { Q_OBJECT - TQ_OBJECT + public: KrPreviewPopup(); ~KrPreviewPopup(); diff --git a/krusader/Panel/krview.h b/krusader/Panel/krview.h index 107a69e..4a45c27 100644 --- a/krusader/Panel/krview.h +++ b/krusader/Panel/krview.h @@ -75,7 +75,7 @@ public: // even if they are actually the same object (specify it twice in that case) class KrViewOperator: public TQObject { Q_OBJECT - TQ_OBJECT + public: KrViewOperator(KrView *view, TQWidget *widget); ~KrViewOperator(); diff --git a/krusader/Panel/listpanel.h b/krusader/Panel/listpanel.h index 64654c2..e88c375 100644 --- a/krusader/Panel/listpanel.h +++ b/krusader/Panel/listpanel.h @@ -79,7 +79,7 @@ class TQHeader; class ListPanel : public TQWidget { friend class ListPanelFunc; Q_OBJECT - TQ_OBJECT + public: #define ITEM2VFILE(PANEL_PTR, KRVIEWITEM) PANEL_PTR->func->files()->vfs_search(KRVIEWITEM->name()) #define NAME2VFILE(PANEL_PTR, STRING_NAME) PANEL_PTR->func->files()->vfs_search(STRING_NAME) diff --git a/krusader/Panel/panelfunc.h b/krusader/Panel/panelfunc.h index 914e04b..c85e6fa 100644 --- a/krusader/Panel/panelfunc.h +++ b/krusader/Panel/panelfunc.h @@ -41,7 +41,7 @@ class ListPanelFunc : public TQObject{ friend class ListPanel; Q_OBJECT - TQ_OBJECT + public slots: inline vfile* getVFile(KrViewItem *item) { return files()->vfs_search(item->name()); } inline vfile* getVFile(const TQString& name) { return files()->vfs_search(name); } diff --git a/krusader/Panel/panelpopup.h b/krusader/Panel/panelpopup.h index b41294e..8062948 100644 --- a/krusader/Panel/panelpopup.h +++ b/krusader/Panel/panelpopup.h @@ -25,7 +25,7 @@ class DiskUsageViewer; class PanelPopup: public TQWidget { Q_OBJECT - TQ_OBJECT + enum Parts { Tree, Preview, QuickPanel, View, DskUsage, Last=0xFF }; public: PanelPopup( TQSplitter *splitter, bool left ); |
