[vlc-commits] commit: skin2: var_tree (add a forgotten return) (Erwan Tulou )
git at videolan.org
git at videolan.org
Thu Aug 5 16:33:25 CEST 2010
vlc | branch: master | Erwan Tulou <erwan10 at videolan.org> | Thu Aug 5 16:16:23 2010 +0200| [c6c9ea7e0034595768295d0754ccafb68e82e453] | committer: Erwan Tulou
skin2: var_tree (add a forgotten return)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c6c9ea7e0034595768295d0754ccafb68e82e453
---
modules/gui/skins2/utils/var_tree.cpp | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/modules/gui/skins2/utils/var_tree.cpp b/modules/gui/skins2/utils/var_tree.cpp
index a7454e5..9d71575 100644
--- a/modules/gui/skins2/utils/var_tree.cpp
+++ b/modules/gui/skins2/utils/var_tree.cpp
@@ -121,6 +121,7 @@ VarTree::Iterator VarTree::getNextSibling( VarTree::Iterator current )
if( it != p_parent->end() )
{
it++;
+ return it;
}
return root()->end();
}
More information about the vlc-commits
mailing list