summaryrefslogtreecommitdiffstats
path: root/src/rip/k3bvideocdview.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 /src/rip/k3bvideocdview.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 'src/rip/k3bvideocdview.cpp')
-rw-r--r--src/rip/k3bvideocdview.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/rip/k3bvideocdview.cpp b/src/rip/k3bvideocdview.cpp
index bc47c62..c8fe675 100644
--- a/src/rip/k3bvideocdview.cpp
+++ b/src/rip/k3bvideocdview.cpp
@@ -470,17 +470,17 @@ void K3bVideoCdView::enableInteraction( bool b )
actionCollection()->action( "start_rip" )->setEnabled( b );
}
-void K3bVideoCdView::buildTree( TQListViewItem *tqparentItem, const TQDomElement &tqparentElement, const TQString& pname )
+void K3bVideoCdView::buildTree( TQListViewItem *parentItem, const TQDomElement &parentElement, const TQString& pname )
{
VideoTrackViewItem * thisItem = 0;
- TQDomNode node = tqparentElement.firstChild();
+ TQDomNode node = parentElement.firstChild();
while ( !node.isNull() ) {
if ( node.isElement() && node.nodeName() == "folder" || node.nodeName() == "file" ) {
- if ( tqparentItem == 0 )
+ if ( parentItem == 0 )
thisItem = new VideoTrackViewItem( m_trackView, thisItem );
else
- thisItem = new VideoTrackViewItem( tqparentItem, thisItem );
+ thisItem = new VideoTrackViewItem( parentItem, thisItem );
TQString txt = node.firstChild().toElement().text();
thisItem->setText( 0, txt);
@@ -492,10 +492,10 @@ void K3bVideoCdView::buildTree( TQListViewItem *tqparentItem, const TQDomElement
buildTree( thisItem, node.toElement(), pname );
}
} else if ( node.isElement() && node.nodeName() == "segment-item" || node.nodeName() == "sequence-item" ) {
- if ( tqparentItem == 0 )
+ if ( parentItem == 0 )
thisItem = new VideoTrackViewItem( m_trackView, thisItem );
else
- thisItem = new VideoTrackViewItem( tqparentItem, thisItem );
+ thisItem = new VideoTrackViewItem( parentItem, thisItem );
thisItem->setText( 0, node.toElement().attribute( "src" ) );