diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2015-04-03 10:22:58 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2015-04-03 10:22:58 +0000 |
| commit | 50c963de1214177c3d3f74e4546e16f36984fc88 (patch) | |
| tree | 310da4f33441d1e268622d60c073b340fdca18c0 /test | |
| parent | 38a0ebd38f1649f8aae343f9ef19e740755d74e4 (diff) | |
Add missing cast (part of patch for STR #2813).
Thanks to Csaba for finding this and providing a patch.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10661 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test')
| -rw-r--r-- | test/menubar.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/menubar.cxx b/test/menubar.cxx index d0168602e..616ab3467 100644 --- a/test/menubar.cxx +++ b/test/menubar.cxx @@ -130,7 +130,7 @@ Fl_Menu_Item menutable[] = { {"Emboss", 0, 0, 0, 0, (uchar)FL_EMBOSSED_LABEL}, {"Engrave", 0, 0, 0, 0, (uchar)FL_ENGRAVED_LABEL}, {"Shadow", 0, 0, 0, 0, (uchar)FL_SHADOW_LABEL}, - {"@->", 0, 0, 0, 0, FL_SYMBOL_LABEL}, + {"@->", 0, 0, 0, 0, (uchar)FL_SYMBOL_LABEL}, {0}, {"&International",0,0,0,FL_SUBMENU}, {"Sharp Ess",0x0000df}, |
