From e7366c97c998679efa80cf61c88e64a11a3d3c33 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 22:19:39 +0000 Subject: rename the following methods: tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kviewshell/tableOfContents.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'kviewshell/tableOfContents.cpp') diff --git a/kviewshell/tableOfContents.cpp b/kviewshell/tableOfContents.cpp index 7003de53..51618d9a 100644 --- a/kviewshell/tableOfContents.cpp +++ b/kviewshell/tableOfContents.cpp @@ -28,19 +28,19 @@ #include "kvsprefs.h" -TocItem::TocItem(TocItem* tqparent) - : KListViewItem(tqparent) +TocItem::TocItem(TocItem* parent) + : KListViewItem(parent) { } -TocItem::TocItem(TQListView* tqparent) - : KListViewItem(tqparent) +TocItem::TocItem(TQListView* parent) + : KListViewItem(parent) { } -TableOfContents::TableOfContents(TQWidget* tqparent) - : KListView(tqparent) +TableOfContents::TableOfContents(TQWidget* parent) + : KListView(parent) { addColumn(i18n("Topic")); addColumn(i18n("Page")); @@ -79,7 +79,7 @@ void TableOfContents::setContents(const TQPtrList& bookmarks) addItems(bookmarks); } -void TableOfContents::addItems(const TQPtrList& _bookmarks, TocItem* tqparent) +void TableOfContents::addItems(const TQPtrList& _bookmarks, TocItem* parent) { kdDebug(1223) << "TableOfContents::setContents()" << endl; if (_bookmarks.isEmpty()) @@ -90,10 +90,10 @@ void TableOfContents::addItems(const TQPtrList& _bookmarks, TocItem* t TQPtrList bookmarks = _bookmarks; for (Bookmark* current = bookmarks.last(); current; current = bookmarks.prev() ) { TocItem* item; - if (!tqparent) + if (!parent) item = new TocItem(this); else - item = new TocItem(tqparent); + item = new TocItem(parent); item->setText(0, current->bookmarkText); if (current->position.page != 0) -- cgit v1.2.3