summaryrefslogtreecommitdiffstats
path: root/src/iteminterface.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
commite47aaa9b34ffc363d268aca989aab28fdfaf9821 (patch)
tree369b56d21949c574d30f71bdf24bf1e04f5e1877 /src/iteminterface.cpp
parente05894553004a47b1e2f276bedcf5963b57a3932 (diff)
downloadktechlab-e47aaa9b34ffc363d268aca989aab28fdfaf9821.tar.gz
ktechlab-e47aaa9b34ffc363d268aca989aab28fdfaf9821.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktechlab@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/iteminterface.cpp')
-rw-r--r--src/iteminterface.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/iteminterface.cpp b/src/iteminterface.cpp
index 78bc7b0..6a60ec6 100644
--- a/src/iteminterface.cpp
+++ b/src/iteminterface.cpp
@@ -233,10 +233,10 @@ TQWidget * ItemInterface::configWidget()
VariantDataMap *variantMap = p_itemGroup->activeItem()->variantMap();
- TQWidget * tqparent = m_pActiveItemEditorToolBar;
+ TQWidget * parent = m_pActiveItemEditorToolBar;
- // Create new widget with the toolbar or dialog as the tqparent
- TQWidget * configWidget = new TQWidget( tqparent, "tbConfigWidget" );
+ // Create new widget with the toolbar or dialog as the parent
+ TQWidget * configWidget = new TQWidget( parent, "tbConfigWidget" );
configWidget->tqsetSizePolicy( TQSizePolicy( TQSizePolicy::MinimumExpanding, TQSizePolicy::MinimumExpanding, 1, 1 ) );
TQHBoxLayout * configLayout = new TQHBoxLayout( configWidget );
@@ -385,8 +385,8 @@ TQWidget * ItemInterface::configWidget()
continue;
// In the case of the toolbar, we don't want it too high
- if ( editWidget->height() > tqparent->height()-2 )
- editWidget->setMaximumHeight( tqparent->height()-2 );
+ if ( editWidget->height() > parent->height()-2 )
+ editWidget->setMaximumHeight( parent->height()-2 );
switch ( type )
{