From 0d5a05983c0c2ba7a51bdeb1688dc232bacfa8ff Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 9 Jul 2011 02:23:29 +0000 Subject: 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/kmplayer@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/playlistview.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/playlistview.cpp') diff --git a/src/playlistview.cpp b/src/playlistview.cpp index c13cb54..bf5b566 100644 --- a/src/playlistview.cpp +++ b/src/playlistview.cpp @@ -251,7 +251,7 @@ void PlayListView::updateTree (int id, NodePtr root, NodePtr active, break; // found based on id } if (id == -1) { // wildcard id - for (NodePtr n = root; n; n = n->tqparentNode ()) + for (NodePtr n = root; n; n = n->parentNode ()) if (n == ritem->node) { root = n; break; @@ -482,7 +482,7 @@ KDE_NO_EXPORT void PlayListView::itemDropped (TQDropEvent * de, TQListViewItem * if (as_child) n->insertBefore (ni, n->firstChild ()); else - n->tqparentNode ()->insertBefore (ni, n->nextSibling ()); + n->parentNode ()->insertBefore (ni, n->nextSibling ()); } PlayListItem * citem = currentPlayListItem (); NodePtr cn; @@ -668,7 +668,7 @@ KDE_NO_EXPORT void PlayListView::slotFindNext () { } else if (n->previousSibling ()) { n = n->previousSibling (); } else { - for (n = n->tqparentNode (); n; n = n->tqparentNode ()) + for (n = n->parentNode (); n; n = n->parentNode ()) if (n->previousSibling ()) { n = n->previousSibling (); break; @@ -685,7 +685,7 @@ KDE_NO_EXPORT void PlayListView::slotFindNext () { } else if (n->nextSibling ()) { n = n->nextSibling (); } else { - for (n = n->tqparentNode (); n; n = n->tqparentNode ()) + for (n = n->parentNode (); n; n = n->parentNode ()) if (n->nextSibling ()) { n = n->nextSibling (); break; -- cgit v1.2.3