summaryrefslogtreecommitdiffstats
path: root/krusader/BookMan/krbookmark.h
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-02-01 15:04:16 -0600
committerTimothy Pearson <[email protected]>2013-02-01 15:04:16 -0600
commit41fe6262418d3042e5520aff108f8122fa601ed2 (patch)
tree0d1d3f9c4497c7483e4094c78d666c5a7aac8327 /krusader/BookMan/krbookmark.h
parentcbee2148d97ecbb4add07263eca856ff793d9e3d (diff)
downloadkrusader-41fe6262418d3042e5520aff108f8122fa601ed2.tar.gz
krusader-41fe6262418d3042e5520aff108f8122fa601ed2.zip
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'krusader/BookMan/krbookmark.h')
-rw-r--r--krusader/BookMan/krbookmark.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/krusader/BookMan/krbookmark.h b/krusader/BookMan/krbookmark.h
index 09d5cf8..d192417 100644
--- a/krusader/BookMan/krbookmark.h
+++ b/krusader/BookMan/krbookmark.h
@@ -5,13 +5,13 @@
#include <tqptrlist.h>
#include <kurl.h>
-class KActionCollection;
+class TDEActionCollection;
-class KrBookmark: public KAction {
+class KrBookmark: public TDEAction {
Q_OBJECT
public:
- KrBookmark(TQString name, KURL url, KActionCollection *parent, TQString icon = "", TQString actionName = TQString() );
+ KrBookmark(TQString name, KURL url, TDEActionCollection *parent, TQString icon = "", TQString actionName = TQString() );
KrBookmark(TQString name, TQString icon = ""); // creates a folder
// text() and setText() to change the name of the bookmark
// icon() and setIcon() to change icons (by name)
@@ -21,11 +21,11 @@ public:
inline bool isSeparator() const { return _separator; }
TQPtrList<KrBookmark>& children() { return _children; }
- static KrBookmark* getExistingBookmark(TQString actionName, KActionCollection *collection);
+ static KrBookmark* getExistingBookmark(TQString actionName, TDEActionCollection *collection);
// ----- special bookmarks
- static KrBookmark* devices(KActionCollection *collection);
- static KrBookmark* virt(KActionCollection *collection);
- static KrBookmark* lan(KActionCollection *collection);
+ static KrBookmark* devices(TDEActionCollection *collection);
+ static KrBookmark* virt(TDEActionCollection *collection);
+ static KrBookmark* lan(TDEActionCollection *collection);
static KrBookmark* separator();
signals: