summaryrefslogtreecommitdiffstats
path: root/libk3b/projects/datacd/k3bdataitem.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
commit85723d544dd6aad9b2d0974dfe91ece438f03dfb (patch)
tree3baf4e3989ae66eef01b9cccc55501a1d0cfe5eb /libk3b/projects/datacd/k3bdataitem.cpp
parenta9a875756e14547b1d362ff6062b735b9f139d32 (diff)
downloadk3b-85723d544dd6aad9b2d0974dfe91ece438f03dfb.tar.gz
k3b-85723d544dd6aad9b2d0974dfe91ece438f03dfb.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/k3b@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libk3b/projects/datacd/k3bdataitem.cpp')
-rw-r--r--libk3b/projects/datacd/k3bdataitem.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/libk3b/projects/datacd/k3bdataitem.cpp b/libk3b/projects/datacd/k3bdataitem.cpp
index ff6aa61..4e53a8d 100644
--- a/libk3b/projects/datacd/k3bdataitem.cpp
+++ b/libk3b/projects/datacd/k3bdataitem.cpp
@@ -186,14 +186,14 @@ TQString K3bDataItem::iso9660Path() const
K3bDataItem* K3bDataItem::nextSibling() const
{
K3bDataItem* item = const_cast<K3bDataItem*>(this); // urg, but we know that we don't mess with it, so...
- K3bDirItem* tqparentItem = getParent();
+ K3bDirItem* parentItem = getParent();
- while( tqparentItem ) {
- if( K3bDataItem* i = tqparentItem->nextChild( item ) )
+ while( parentItem ) {
+ if( K3bDataItem* i = parentItem->nextChild( item ) )
return i;
- item = tqparentItem;
- tqparentItem = item->getParent();
+ item = parentItem;
+ parentItem = item->getParent();
}
return 0;