Author: greg.ercolano
Date: 2011-01-28 22:00:46 -0800 (Fri, 28 Jan 2011)
New Revision: 8327
Log:
Fixes STR#2547.


Modified:
   branches/branch-1.3/src/Fl_Tree.cxx

Modified: branches/branch-1.3/src/Fl_Tree.cxx
===================================================================
--- branches/branch-1.3/src/Fl_Tree.cxx 2011-01-28 18:10:39 UTC (rev 8326)
+++ branches/branch-1.3/src/Fl_Tree.cxx 2011-01-29 06:00:46 UTC (rev 8327)
@@ -347,7 +347,7 @@
 ///
 /// Use this to walk the tree in the forward direction, eg:
 /// \code
-/// for ( Fl_Tree_Item *item = tree->first(); item; item = tree->next() ) {
+/// for ( Fl_Tree_Item *item = tree->first(); item; item = tree->next(item) ) {
 ///     printf("Item: %s\n", item->label());
 /// }
 /// \endcode

_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit

Reply via email to