diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2020-09-18 15:49:26 +0200 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2020-09-18 15:51:00 +0200 |
| commit | b279c11d345e68d46e8b292fcc83c83fb050db7f (patch) | |
| tree | ae40e76c8a7a8056bedab9233c76f65ae3362500 | |
| parent | 864a86b40f41247ded057a09239d9c2bb8cd87f0 (diff) | |
Fix use of "\deprecated" Doxygen commands.
| -rw-r--r-- | FL/Fl_Menu_Item.H | 9 |
1 files 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); |
