diff --git a/documentation/Fl_Menu_Item.html b/documentation/Fl_Menu_Item.html index bdce5feb9..6ab539dc6 100644 --- a/documentation/Fl_Menu_Item.html +++ b/documentation/Fl_Menu_Item.html @@ -52,14 +52,14 @@ enum { // values for flags:

Fl_Menu_Item popup[] = {
- {", FL_ALT+'a', the_cb, (void*)1},
- {", FL_ALT+'b', the_cb, (void*)2},
+ {"&alpha", FL_ALT+'a', the_cb, (void*)1},
+ {"&beta", FL_ALT+'b', the_cb, (void*)2},
{"gamma", FL_ALT+'c', the_cb, (void*)3, FL_MENU_DIVIDER},
- {", 0, strange_cb},
- {", 0, charm_cb},
- {", 0, truth_cb},
- {"b, 0, beauty_cb},
- {"sub, 0, 0, 0, FL_SUBMENU},
+ {"&strange", 0, strange_cb},
+ {"&charm", 0, charm_cb},
+ {"&truth", 0, truth_cb},
+ {"b&eauty", 0, beauty_cb},
+ {"sub&menu", 0, 0, 0, FL_SUBMENU},
{"one"},
{"two"},
{"three"},
@@ -292,4 +292,4 @@ Fl_Menu_Item::next(int n=1) const
Fl_Menu_Item* Fl_Menu_Item::next(int n=1);
Advance a pointer by n items through a menu array, skipping
the contents of submenus and invisible items. There are two calls so
-that you can advance through const and non-const data.