summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl_Menu_Item.H9
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);