summaryrefslogtreecommitdiff
path: root/FL/Fl_Multi_Label.H
diff options
context:
space:
mode:
authorGreg Ercolano <erco@seriss.com>2017-09-27 03:30:13 +0000
committerGreg Ercolano <erco@seriss.com>2017-09-27 03:30:13 +0000
commit37a8ef98f02f7dc437f69cbb7cd8e1c0242c4a48 (patch)
treeb73e5814a25b396494cc8a0e6240625244c4b8e8 /FL/Fl_Multi_Label.H
parentc68ec2026f23871aee54cecef42c16a355404f72 (diff)
Small doc simplification/shortening
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12471 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Multi_Label.H')
-rw-r--r--FL/Fl_Multi_Label.H4
1 files changed, 2 insertions, 2 deletions
diff --git a/FL/Fl_Multi_Label.H b/FL/Fl_Multi_Label.H
index 8215724aa..0de453802 100644
--- a/FL/Fl_Multi_Label.H
+++ b/FL/Fl_Multi_Label.H
@@ -48,7 +48,7 @@ struct Fl_Menu_Item;
Example Use: Fl_Menu_Bar
\code
- Fl_Pixmap *image = new Fl_Pixmap(..); // image for menu item; can be any Fl_Image based widget
+ Fl_Pixmap *image = new Fl_Pixmap(..); // image for menu item; any Fl_Image based widget
Fl_Menu_Bar *menu = new Fl_Menu_Bar(..); // can be any Fl_Menu_ oriented widget (Fl_Choice, Fl_Menu_Button..)
// Create a menu item
@@ -60,7 +60,7 @@ struct Fl_Menu_Item;
// Left side of label is an image
ml->typea = FL_IMAGE_LABEL;
- ml->labela = (const char*)image;
+ ml->labela = (const char*)image; // any Fl_Image widget: Fl_Pixmap, Fl_PNG_Image, etc..
// Right side of label is label text
ml->typeb = FL_NORMAL_LABEL;