Small doc fixes as recommended by Albrecht,

who is currently proofreading the Fl_Tree docs/code.



git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10700 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Greg Ercolano 2015-04-13 17:00:26 +00:00
parent 1f7eb7bc4e
commit f722272921
1 changed files with 2 additions and 2 deletions

View File

@ -476,7 +476,7 @@ Fl_Tree_Item* Fl_Tree_Item::deparent(int pos) {
/// ///
/// \returns /// \returns
/// - 0: on success /// - 0: on success
/// - -1: on error (e.g. if \p 'pos' out of range) /// - -1: on error (e.g. if \p 'pos' out of range) with no changes made.
/// ///
int Fl_Tree_Item::reparent(Fl_Tree_Item *newchild, int pos) { int Fl_Tree_Item::reparent(Fl_Tree_Item *newchild, int pos) {
int ret; int ret;
@ -485,7 +485,7 @@ int Fl_Tree_Item::reparent(Fl_Tree_Item *newchild, int pos) {
return 0; return 0;
} }
/// Move the item 'to' to sibling position of 'from'. /// Move the item 'from' to sibling position of 'to'.
/// ///
/// \returns /// \returns
/// - 0: Success /// - 0: Success