summaryrefslogtreecommitdiffstats
path: root/src/bookmarkselector.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit2e11795ab3befef25e318902869fa71c6ff4a076 (patch)
treeb5ec2f60aef32f350fc5b56720bc616c44a840c6 /src/bookmarkselector.cpp
parent10b4cb5e889a28380c1cc4d5e4ebe01a835df6d9 (diff)
downloaddolphin-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/bookmarkselector.cpp')
-rw-r--r--src/bookmarkselector.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/bookmarkselector.cpp b/src/bookmarkselector.cpp
index d957140..1e996a1 100644
--- a/src/bookmarkselector.cpp
+++ b/src/bookmarkselector.cpp
@@ -34,8 +34,8 @@
#include "dolphin.h"
#include "urlnavigator.h"
-BookmarkSelector::BookmarkSelector(URLNavigator* tqparent) :
- URLButton(tqparent),
+BookmarkSelector::BookmarkSelector(URLNavigator* parent) :
+ URLButton(parent),
m_selectedIndex(0)
{
setFocusPolicy(TQ_NoFocus);
@@ -88,8 +88,8 @@ void BookmarkSelector::updateSelection(const KURL& url)
int maxLength = 0;
m_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()) {
@@ -136,7 +136,7 @@ void BookmarkSelector::drawButton(TQPainter* painter)
foregroundColor = KGlobalSettings::buttonTextColor();
}
- // dimm the colors if the tqparent view does not have the focus
+ // dimm the colors if the parent view does not have the focus
const DolphinView* parentView = urlNavigator()->dolphinView();
const Dolphin& dolphin = Dolphin::mainWin();