diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | 2e11795ab3befef25e318902869fa71c6ff4a076 (patch) | |
tree | b5ec2f60aef32f350fc5b56720bc616c44a840c6 /src/bookmarkssidebarpage.cpp | |
parent | 10b4cb5e889a28380c1cc4d5e4ebe01a835df6d9 (diff) | |
download | dolphin-2e11795ab3befef25e318902869fa71c6ff4a076.tar.gz dolphin-2e11795ab3befef25e318902869fa71c6ff4a076.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/dolphin@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/bookmarkssidebarpage.cpp')
-rw-r--r-- | src/bookmarkssidebarpage.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/bookmarkssidebarpage.cpp b/src/bookmarkssidebarpage.cpp index 7ffa321..af39d7e 100644 --- a/src/bookmarkssidebarpage.cpp +++ b/src/bookmarkssidebarpage.cpp @@ -35,8 +35,8 @@ #include "dolphinview.h" #include "editbookmarkdialog.h" -BookmarksSidebarPage::BookmarksSidebarPage(TQWidget* tqparent) : - SidebarPage(tqparent) +BookmarksSidebarPage::BookmarksSidebarPage(TQWidget* parent) : + SidebarPage(parent) { TQVBoxLayout* tqlayout = new TQVBoxLayout(this); m_bookmarksList = new BookmarksListBox(this); @@ -194,8 +194,8 @@ void BookmarksSidebarPage::adjustSelection(const KURL& url) int maxLength = 0; int selectedIndex = -1; - // Search the bookmark which is equal to the URL or at least is a tqparent URL. - // If there are more than one possible tqparent URL candidates, choose the bookmark + // Search the bookmark which is equal to the URL or at least is a parent URL. + // If there are more than one possible parent URL candidates, choose the bookmark // which covers the bigger range of the URL. int i = 0; while (!bookmark.isNull()) { @@ -238,8 +238,8 @@ void BookmarksSidebarPage::connectToActiveView() this, TQT_SLOT(slotURLChanged(const KURL&))); } -BookmarksListBox::BookmarksListBox(TQWidget* tqparent) : - TQListBox(tqparent) +BookmarksListBox::BookmarksListBox(TQWidget* parent) : + TQListBox(parent) { setAcceptDrops(true); } |