summaryrefslogtreecommitdiffstats
path: root/src/itemgroup.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
commit6c86748feda6b6fb15ec2ce73b18838aa6a9a7f9 (patch)
tree31d759580e3bf977fd7fea7a451b535f3c0741a6 /src/itemgroup.cpp
parent87a016680e3677da3993f333561e79eb0cead7d5 (diff)
downloadktechlab-6c86748feda6b6fb15ec2ce73b18838aa6a9a7f9.tar.gz
ktechlab-6c86748feda6b6fb15ec2ce73b18838aa6a9a7f9.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/ktechlab@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/itemgroup.cpp')
-rw-r--r--src/itemgroup.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/itemgroup.cpp b/src/itemgroup.cpp
index 9abdfe0..d6d6fb2 100644
--- a/src/itemgroup.cpp
+++ b/src/itemgroup.cpp
@@ -46,7 +46,7 @@ ItemList ItemGroup::items( bool excludeParentedItems ) const
return m_itemList;
ItemList items = m_itemList;
- ItemList tqparents = m_itemList;
+ ItemList parents = m_itemList;
uint oldSize = items.size();
do
@@ -54,8 +54,8 @@ ItemList ItemGroup::items( bool excludeParentedItems ) const
oldSize = items.size();
ItemList tqchildren;
- ItemList::iterator end = tqparents.end();
- for ( ItemList::iterator it = tqparents.begin(); it != end; ++it )
+ ItemList::iterator end = parents.end();
+ for ( ItemList::iterator it = parents.begin(); it != end; ++it )
tqchildren += (*it)->tqchildren();
end = tqchildren.end();
@@ -67,7 +67,7 @@ ItemList ItemGroup::items( bool excludeParentedItems ) const
tqchildren.remove((Item*)0l);
items += tqchildren;
- tqparents = tqchildren;
+ parents = tqchildren;
}
while ( oldSize != items.size() );