diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
commit | 0d5a05983c0c2ba7a51bdeb1688dc232bacfa8ff (patch) | |
tree | 26e2e13d9f08727aa60872c0536662f8b2b5bf56 /src/playlistview.cpp | |
parent | 656e74dad5d31c4cc3eebdab9f58c679cfcc1ab0 (diff) | |
download | kmplayer-0d5a05983c0c2ba7a51bdeb1688dc232bacfa8ff.tar.gz kmplayer-0d5a05983c0c2ba7a51bdeb1688dc232bacfa8ff.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/kmplayer@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/playlistview.cpp')
-rw-r--r-- | src/playlistview.cpp | 8 |
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; |