Fix use of "\deprecated" Doxygen commands.

This commit is contained in:
ManoloFLTK 2020-09-18 15:49:26 +02:00
parent 864a86b40f
commit b279c11d34

View File

@ -404,13 +404,16 @@ struct FL_EXPORT Fl_Menu_Item {
// back-compatibility, do not use:
/** back compatibility only \deprecated. */
/** For back compatibility only
\deprecated Replaced by value() */
int checked() const {return flags&FL_MENU_VALUE;}
/** back compatibility only \deprecated. */
/** For back compatibility only
\deprecated Replaced by set() */
void check() {flags |= FL_MENU_VALUE;}
/** back compatibility only \deprecated. */
/** For back compatibility only
\deprecated Replaced by clear() */
void uncheck() {flags &= ~FL_MENU_VALUE;}
int insert(int,const char*,int,Fl_Callback*,void* =0, int =0);