summaryrefslogtreecommitdiffstats
path: root/kviewshell/tableOfContents.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kviewshell/tableOfContents.cpp')
-rw-r--r--kviewshell/tableOfContents.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/kviewshell/tableOfContents.cpp b/kviewshell/tableOfContents.cpp
index 51618d9a..7003de53 100644
--- a/kviewshell/tableOfContents.cpp
+++ b/kviewshell/tableOfContents.cpp
@@ -28,19 +28,19 @@
#include "kvsprefs.h"
-TocItem::TocItem(TocItem* parent)
- : KListViewItem(parent)
+TocItem::TocItem(TocItem* tqparent)
+ : KListViewItem(tqparent)
{
}
-TocItem::TocItem(TQListView* parent)
- : KListViewItem(parent)
+TocItem::TocItem(TQListView* tqparent)
+ : KListViewItem(tqparent)
{
}
-TableOfContents::TableOfContents(TQWidget* parent)
- : KListView(parent)
+TableOfContents::TableOfContents(TQWidget* tqparent)
+ : KListView(tqparent)
{
addColumn(i18n("Topic"));
addColumn(i18n("Page"));
@@ -79,7 +79,7 @@ void TableOfContents::setContents(const TQPtrList<Bookmark>& bookmarks)
addItems(bookmarks);
}
-void TableOfContents::addItems(const TQPtrList<Bookmark>& _bookmarks, TocItem* parent)
+void TableOfContents::addItems(const TQPtrList<Bookmark>& _bookmarks, TocItem* tqparent)
{
kdDebug(1223) << "TableOfContents::setContents()" << endl;
if (_bookmarks.isEmpty())
@@ -90,10 +90,10 @@ void TableOfContents::addItems(const TQPtrList<Bookmark>& _bookmarks, TocItem* p
TQPtrList<Bookmark> bookmarks = _bookmarks;
for (Bookmark* current = bookmarks.last(); current; current = bookmarks.prev() ) {
TocItem* item;
- if (!parent)
+ if (!tqparent)
item = new TocItem(this);
else
- item = new TocItem(parent);
+ item = new TocItem(tqparent);
item->setText(0, current->bookmarkText);
if (current->position.page != 0)