summaryrefslogtreecommitdiff
path: root/FL/Fl_Group.H
diff options
context:
space:
mode:
authorFabien Costantini <fabien@onepost.net>2009-03-24 01:40:44 +0000
committerFabien Costantini <fabien@onepost.net>2009-03-24 01:40:44 +0000
commit15489bda1b2c9a4db82965a85634674d5d7f2dbe (patch)
tree0bd04bb1d127ad7aca0d09141993c32a20c2eb10 /FL/Fl_Group.H
parent2fb4b11e9140cbf7bc19c566c71cdb935296b4e3 (diff)
Major documentation update including: now html doc API is sorted, navigation problems/side effects fixed, html tags replaced by proper doxygen commands, parameters command switched from a to p. Includes a pdf update.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6716 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Group.H')
-rw-r--r--FL/Fl_Group.H6
1 files changed, 3 insertions, 3 deletions
diff --git a/FL/Fl_Group.H b/FL/Fl_Group.H
index 1037897e2..c3898db03 100644
--- a/FL/Fl_Group.H
+++ b/FL/Fl_Group.H
@@ -105,12 +105,12 @@ public:
void insert(Fl_Widget&, int i);
/**
This does insert(w, find(before)). This will append the
- widget if \a before is not in the group.
+ widget if \p before is not in the group.
*/
void insert(Fl_Widget& o, Fl_Widget* before) {insert(o,find(before));}
void remove(Fl_Widget&);
/**
- Removes the widget \a o from the group.
+ Removes the widget \p o from the group.
\sa void remove(Fl_Widget&)
*/
void remove(Fl_Widget* o) {remove(*o);}
@@ -163,7 +163,7 @@ public:
Controls whether the group widget clips the drawing of
child widgets to its bounding box.
- Set \a c to 1 if you want to clip the child widgets to the
+ Set \p c to 1 if you want to clip the child widgets to the
bounding box.
The default is to not clip (0) the drawing of child widgets.