Fix typo in Fl_Menu_Item docs

This commit is contained in:
Albrecht Schlosser
2022-01-13 14:20:55 +01:00
parent 42f4ebab2f
commit 879da686b6
+1 -1
View File
@@ -313,7 +313,7 @@ struct FL_EXPORT Fl_Menu_Item {
int value() const {return (flags & FL_MENU_VALUE) ? 1 : 0;} int value() const {return (flags & FL_MENU_VALUE) ? 1 : 0;}
/** /**
Turns the check or radio item "on" for the menu item. Note that this Turns the check or radio item "on" for the menu item. Note that this
does not turn off any adjacent radio items like set_only() does. does not turn off any adjacent radio items like setonly() does.
*/ */
void set() {flags |= FL_MENU_VALUE;} void set() {flags |= FL_MENU_VALUE;}