diff options
| author | Manolo Gouy <Manolo> | 2015-02-08 19:46:36 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2015-02-08 19:46:36 +0000 |
| commit | ec1d3ce3d93fd4913e207e29fb02cb2c86291b3d (patch) | |
| tree | 68cb3ffb4a363ed7a31f06ff4b2ffe03e0c8451d | |
| parent | 50575289636644581ee94c172df7aed874f17747 (diff) | |
Allow compilation with -std=c++11
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10562 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | test/menubar.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/menubar.cxx b/test/menubar.cxx index 07e46f50c..d0168602e 100644 --- a/test/menubar.cxx +++ b/test/menubar.cxx @@ -127,9 +127,9 @@ Fl_Menu_Item menutable[] = { {"Italic", 0, 0, 0, 0, 0, FL_ITALIC, 14}, {"BoldItalic",0,0,0, 0, 0, FL_BOLD+FL_ITALIC, 14}, {"Small", 0, 0, 0, 0, 0, FL_BOLD+FL_ITALIC, 10}, - {"Emboss", 0, 0, 0, 0, FL_EMBOSSED_LABEL}, - {"Engrave", 0, 0, 0, 0, FL_ENGRAVED_LABEL}, - {"Shadow", 0, 0, 0, 0, FL_SHADOW_LABEL}, + {"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}, {"&International",0,0,0,FL_SUBMENU}, |
