summaryrefslogtreecommitdiffstats
path: root/parts/documentation/bookmarkview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'parts/documentation/bookmarkview.cpp')
-rw-r--r--parts/documentation/bookmarkview.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/parts/documentation/bookmarkview.cpp b/parts/documentation/bookmarkview.cpp
index 4581361d..5cf527ab 100644
--- a/parts/documentation/bookmarkview.cpp
+++ b/parts/documentation/bookmarkview.cpp
@@ -84,11 +84,11 @@ TQString DocBookmarkOwner::currentTitle() const
class DocBookmarkItem: public DocumentationItem {
public:
- DocBookmarkItem(Type type, KListView *parent, const TQString &name)
+ DocBookmarkItem(Type type, TDEListView *parent, const TQString &name)
:DocumentationItem(type, parent, name)
{
}
- DocBookmarkItem(Type type, KListView *parent, DocumentationItem *after, const TQString &name)
+ DocBookmarkItem(Type type, TDEListView *parent, DocumentationItem *after, const TQString &name)
:DocumentationItem(type, parent, after, name)
{
}
@@ -114,7 +114,7 @@ BookmarkView::BookmarkView(DocumentationWidget *parent, const char *name)
m_bmOwner = new DocBookmarkOwner(m_widget->part());
TQVBoxLayout *l = new TQVBoxLayout(this, 0, KDialog::spacingHint());
- m_view = new KListView(this);
+ m_view = new TDEListView(this);
m_view->addColumn(i18n("Title"));
m_view->setSorting(-1);
m_view->header()->hide();
@@ -215,7 +215,7 @@ void BookmarkView::addBookmark()
TQString title = m_bmOwner->currentTitle();
TQString url = m_bmOwner->currentURL();
- KPopupMenu menu;
+ TDEPopupMenu menu;
bool useMenu = false;
if (!title.isEmpty() && !url.isEmpty())
{