Fix doxygen warnings

This commit is contained in:
Albrecht Schlosser
2023-12-02 21:38:15 +01:00
parent 84c9432d2a
commit fc6675aa87
2 changed files with 5 additions and 8 deletions
+3 -3
View File
@@ -401,13 +401,13 @@ struct FL_EXPORT Fl_Menu_Item {
// back-compatibility, do not use: // back-compatibility, do not use:
/** back compatibility only \deprecated. */ /** back compatibility only. \deprecated */
int checked() const {return flags&FL_MENU_VALUE;} int checked() const {return flags&FL_MENU_VALUE;}
/** back compatibility only \deprecated. */ /** back compatibility only. \deprecated */
void check() {flags |= FL_MENU_VALUE;} void check() {flags |= FL_MENU_VALUE;}
/** back compatibility only \deprecated. */ /** back compatibility only. \deprecated */
void uncheck() {flags &= ~FL_MENU_VALUE;} void uncheck() {flags &= ~FL_MENU_VALUE;}
int insert(int,const char*,int,Fl_Callback*,void* =0, int =0); int insert(int,const char*,int,Fl_Callback*,void* =0, int =0);
+2 -5
View File
@@ -1,9 +1,7 @@
// //
// "$Id$"
//
// Scroll widget for the Fast Light Tool Kit (FLTK). // Scroll widget for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2015 by Bill Spitzak and others. // Copyright 1998-2023 by Bill Spitzak and others.
// //
// This library is free software. Distribution and use rights are outlined in // This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this // the file "COPYING" which should have been included with this file. If this
@@ -96,8 +94,7 @@ void Fl_Scroll::draw_clip(void* v,int X, int Y, int W, int H) {
Derived classes can make use of this call to figure out the scrolling area Derived classes can make use of this call to figure out the scrolling area
eg. during resize() handling. eg. during resize() handling.
\param[in] si -- ScrollInfo structure \param[in,out] si -- ScrollInfo structure
\returns Structure containing the calculated info.
*/ */
void Fl_Scroll::recalc_scrollbars(ScrollInfo &si) { void Fl_Scroll::recalc_scrollbars(ScrollInfo &si) {