summaryrefslogtreecommitdiffstats
path: root/lib/kofficeui/KoToolBox.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
commit04766b207afba7961d4d802313e426f5a2fbef63 (patch)
treec888ea1027c793e2d0386a7e5a1a0cd077b03cb3 /lib/kofficeui/KoToolBox.cpp
parentb6edfe41c9395f2e20784cbf0e630af6426950a3 (diff)
downloadkoffice-04766b207afba7961d4d802313e426f5a2fbef63.tar.gz
koffice-04766b207afba7961d4d802313e426f5a2fbef63.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'lib/kofficeui/KoToolBox.cpp')
-rw-r--r--lib/kofficeui/KoToolBox.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/kofficeui/KoToolBox.cpp b/lib/kofficeui/KoToolBox.cpp
index eea6a2903..db4d6467c 100644
--- a/lib/kofficeui/KoToolBox.cpp
+++ b/lib/kofficeui/KoToolBox.cpp
@@ -91,9 +91,9 @@ void KoToolBox::registerTool( KAction *tool, int toolType, TQ_UINT32 priority )
(*tl)[prio] = tool;
}
-TQToolButton *KoToolBox::createButton(TQWidget * tqparent, const char* iconName, TQString tooltip)
+TQToolButton *KoToolBox::createButton(TQWidget * parent, const char* iconName, TQString tooltip)
{
- TQToolButton *button = new TQToolButton(tqparent);
+ TQToolButton *button = new TQToolButton(parent);
if ( iconName && *iconName ) {
TQPixmap pixmap = BarIcon( iconName, m_instance );
@@ -193,8 +193,8 @@ void KoToolBox::slotSetTool(const TQString & toolname)
// class ToolArea
-ToolArea::ToolArea(TQWidget *tqparent)
- : TQWidget(tqparent), m_left(true)
+ToolArea::ToolArea(TQWidget *parent)
+ : TQWidget(parent), m_left(true)
{
m_layout = new TQBoxLayout(this, TQBoxLayout::LeftToRight, 0, 0, 0);
TQWidget *w = new TQWidget(this);