summaryrefslogtreecommitdiffstats
path: root/src/urlnavigatorbutton.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commit7b65a26139363081928049b6613475488a057011 (patch)
treef6f65c691331ea050578dc39a655cc8d98afdf12 /src/urlnavigatorbutton.cpp
parent98fdf3c14619cfe6b5547c941bcbf8ecd4315e3b (diff)
downloaddolphin-7b65a26139363081928049b6613475488a057011.tar.gz
dolphin-7b65a26139363081928049b6613475488a057011.zip
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/dolphin@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/urlnavigatorbutton.cpp')
-rw-r--r--src/urlnavigatorbutton.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/urlnavigatorbutton.cpp b/src/urlnavigatorbutton.cpp
index 165b275..bc0e7b5 100644
--- a/src/urlnavigatorbutton.cpp
+++ b/src/urlnavigatorbutton.cpp
@@ -109,10 +109,10 @@ void URLNavigatorButton::drawButton(TQPainter* painter)
}
// dimm the colors if the tqparent view does not have the focus
- const DolphinView* tqparentView = urlNavigator()->dolphinView();
+ const DolphinView* parentView = urlNavigator()->dolphinView();
const Dolphin& dolphin = Dolphin::mainWin();
- const bool isActive = (dolphin.activeView() == tqparentView);
+ const bool isActive = (dolphin.activeView() == parentView);
if (!isActive) {
TQColor dimmColor(tqcolorGroup().background());
foregroundColor = mixColors(foregroundColor, dimmColor);