Skip to content

Commit

Permalink
Remove Doxygen warnings introduced at r.9116
Browse files Browse the repository at this point in the history
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@9126 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
  • Loading branch information
Manolo Gouy authored and Manolo Gouy committed Oct 4, 2011
1 parent d8a1aea commit 5e136f4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions FL/Fl_Browser_.H
Expand Up @@ -307,7 +307,7 @@ public:
return(scrollbar_size_);
}
/**
Sets the pixel size of the scrollbars' troughs to the \p size, in pixels.
Sets the pixel size of the scrollbars' troughs to \p newSize, in pixels.
Normally you should not need this method, and should use
Fl::scrollbar_size(int) instead to manage the size of ALL
Expand All @@ -318,10 +318,10 @@ public:
Only use THIS method if you really need to override the global
scrollbar size. The need for this should be rare.
Setting \p size to the special value of 0 causes the widget to
Setting \p newSize to the special value of 0 causes the widget to
track the global Fl::scrollbar_size(), which is the default.
\param[in] size Sets the scrollbar size in pixels.\n
\param[in] newSize Sets the scrollbar size in pixels.\n
If 0 (default), scrollbar size tracks the global Fl::scrollbar_size()
\see Fl::scrollbar_size()
*/
Expand Down
6 changes: 3 additions & 3 deletions FL/Fl_Help_View.H
Expand Up @@ -357,7 +357,7 @@ public:
return(scrollbar_size_);
}
/**
Sets the pixel size of the scrollbars' troughs to the \p size, in pixels.
Sets the pixel size of the scrollbars' troughs to \p newSize, in pixels.
Normally you should not need this method, and should use
Fl::scrollbar_size(int) instead to manage the size of ALL
Expand All @@ -368,10 +368,10 @@ public:
Only use THIS method if you really need to override the global
scrollbar size. The need for this should be rare.
Setting \p size to the special value of 0 causes the widget to
Setting \p newSize to the special value of 0 causes the widget to
track the global Fl::scrollbar_size(), which is the default.
\param[in] size Sets the scrollbar size in pixels.\n
\param[in] newSize Sets the scrollbar size in pixels.\n
If 0 (default), scrollbar size tracks the global Fl::scrollbar_size()
\see Fl::scrollbar_size()
*/
Expand Down
6 changes: 3 additions & 3 deletions FL/Fl_Scroll.H
Expand Up @@ -159,7 +159,7 @@ public:
return(scrollbar_size_);
}
/**
Sets the pixel size of the scrollbars' troughs to the \p size, in pixels.
Sets the pixel size of the scrollbars' troughs to \p newSize, in pixels.
Normally you should not need this method, and should use
Fl::scrollbar_size(int) instead to manage the size of ALL
Expand All @@ -170,10 +170,10 @@ public:
Only use THIS method if you really need to override the global
scrollbar size. The need for this should be rare.
Setting \p size to the special value of 0 causes the widget to
Setting \p newSize to the special value of 0 causes the widget to
track the global Fl::scrollbar_size(), which is the default.
\param[in] size Sets the scrollbar size in pixels.\n
\param[in] newSize Sets the scrollbar size in pixels.\n
If 0 (default), scrollbar size tracks the global Fl::scrollbar_size()
\see Fl::scrollbar_size()
*/
Expand Down
8 changes: 4 additions & 4 deletions FL/Fl_Widget.H
Expand Up @@ -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;}
Expand Down

0 comments on commit 5e136f4

Please sign in to comment.