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/urlbutton.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/urlbutton.cpp')
-rw-r--r-- | src/urlbutton.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/urlbutton.cpp b/src/urlbutton.cpp index 73f098a..a48c833 100644 --- a/src/urlbutton.cpp +++ b/src/urlbutton.cpp @@ -32,16 +32,16 @@ #include "dolphin.h" -URLButton::URLButton(URLNavigator* tqparent) -: TQPushButton(tqparent), +URLButton::URLButton(URLNavigator* parent) +: TQPushButton(parent), m_displayHint(0), - m_urlNavigator(tqparent) + m_urlNavigator(parent) { setFocusPolicy(TQ_NoFocus); tqsetSizePolicy(TQSizePolicy::Maximum, TQSizePolicy::Fixed); - setMinimumHeight(tqparent->minimumHeight()); + setMinimumHeight(parent->minimumHeight()); - connect(this, TQT_SIGNAL(clicked()), tqparent, TQT_SLOT(slotRequestActivation())); + connect(this, TQT_SIGNAL(clicked()), parent, TQT_SLOT(slotRequestActivation())); connect(&Dolphin::mainWin(), TQT_SIGNAL(activeViewChanged()), this, TQT_SLOT(update())); } |