summaryrefslogtreecommitdiffstats
path: root/src/playlistview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/playlistview.cpp')
-rw-r--r--src/playlistview.cpp8
1 files changed, 4 insertions, 4 deletions
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;