From b279c11d345e68d46e8b292fcc83c83fb050db7f Mon Sep 17 00:00:00 2001 From: ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> Date: Fri, 18 Sep 2020 15:49:26 +0200 Subject: [PATCH] Fix use of "\deprecated" Doxygen commands. --- FL/Fl_Menu_Item.H | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/FL/Fl_Menu_Item.H b/FL/Fl_Menu_Item.H index f4b75000b..0c97e53f9 100644 --- a/FL/Fl_Menu_Item.H +++ b/FL/Fl_Menu_Item.H @@ -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);