diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:36:53 -0600 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-06-18 23:49:43 +0200 |
commit | 06d3cc396b46988b67349ac9043243e989eed4fd (patch) | |
tree | 155cf540e693dbd667903ef1d10219131ce8ea58 /src/kmplayerplaylist.cpp | |
parent | e1c9b8f5bbbf686e798b84f91f205bf512417ea7 (diff) | |
download | kmplayer-06d3cc396b46988b67349ac9043243e989eed4fd.tar.gz kmplayer-06d3cc396b46988b67349ac9043243e989eed4fd.zip |
Remove additional unneeded tq method conversions
(cherry picked from commit 0ed6bc56f9167e115f14d18b4bc8ce18fb7674b6)
Diffstat (limited to 'src/kmplayerplaylist.cpp')
-rw-r--r-- | src/kmplayerplaylist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kmplayerplaylist.cpp b/src/kmplayerplaylist.cpp index 12ca61e..dab53a4 100644 --- a/src/kmplayerplaylist.cpp +++ b/src/kmplayerplaylist.cpp @@ -296,7 +296,7 @@ void Node::clearChildren () { if (m_doc) document()->m_tree_version++; while (m_first_child != m_last_child) { - // avoid stack abuse with 10k tqchildren derefing each other + // avoid stack abuse with 10k children derefing each other m_last_child->m_parent = 0L; m_last_child = m_last_child->m_prev; m_last_child->m_next = 0L; |