Commit 9b6c3231 authored by Erwan Tulou's avatar Erwan Tulou

skins2: remove unused function

parent 226d4e65
......@@ -194,18 +194,6 @@ VarTree::Iterator VarTree::prev_uncle()
return root()->begin();
}
void VarTree::checkParents( VarTree *pParent )
{
m_pParent = pParent;
Iterator it = begin();
while( it != end() )
{
it->checkParents( this );
it++;
}
}
int VarTree::visibleItems()
{
int i_count = size();
......
......@@ -103,7 +103,6 @@ public:
/// Parent node
VarTree *parent() { return m_pParent; }
void checkParents( VarTree *pParent );
/// Get next sibling
Iterator getNextSibling( Iterator );
......
......@@ -274,7 +274,5 @@ void Playtree::buildTree()
buildNode( m_pPlaylist->p_root_category, *this );
playlist_Unlock( m_pPlaylist );
// What is it ?
// checkParents( NULL );
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment