summaryrefslogtreecommitdiff
path: root/FL/Fl_Widget.H
diff options
context:
space:
mode:
Diffstat (limited to 'FL/Fl_Widget.H')
-rw-r--r--FL/Fl_Widget.H8
1 files changed, 4 insertions, 4 deletions
diff --git a/FL/Fl_Widget.H b/FL/Fl_Widget.H
index e765c3a9d..7e7ed615a 100644
--- a/FL/Fl_Widget.H
+++ b/FL/Fl_Widget.H
@@ -851,10 +851,10 @@ public:
*/
int contains(const Fl_Widget *w) const ;
- /** Checks if this widget is a child of w.
- Returns 1 if this widget is a child of \p w, or is
- equal to \p w. Returns 0 if \p w is NULL.
- \param[in] w the possible parent widget.
+ /** Checks if this widget is a child of \p wgt.
+ Returns 1 if this widget is a child of \p wgt, or is
+ equal to \p wgt. Returns 0 if \p wgt is NULL.
+ \param[in] wgt the possible parent widget.
\see contains()
*/
int inside(const Fl_Widget* wgt) const {return wgt ? wgt->contains(this) : 0;}