diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-12-08 21:09:59 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-12-08 21:09:59 +0000 |
| commit | 57a983ea8303e55a534270c23fc34d0b7efe1e31 (patch) | |
| tree | d0a6836d711a589a7c8fcef4e4844d9636a73584 | |
| parent | f42673addcd73638632986058701b7705fa34c28 (diff) | |
Menu items were being initialized static... Dropped the "static" from
the initializer.
git-svn-id: file:///fltk/svn/fltk/trunk@155 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | fluid/Fl_Menu_Type.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fluid/Fl_Menu_Type.cxx b/fluid/Fl_Menu_Type.cxx index a0bdd0ece..4f86f7d59 100644 --- a/fluid/Fl_Menu_Type.cxx +++ b/fluid/Fl_Menu_Type.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_Menu_Type.cxx,v 1.6 1998/12/06 15:45:26 mike Exp $" +// "$Id: Fl_Menu_Type.cxx,v 1.7 1998/12/08 21:09:59 mike Exp $" // // Menu item code for the Fast Light Tool Kit (FLTK). // @@ -221,7 +221,7 @@ void Fl_Menu_Item_Type::write_static() { for (Fl_Type* q = t->next; q && q->is_menu_item(); q = q->next, i ++) { c = array_name((Fl_Menu_Item_Type *)q); if (c) - write_c("static Fl_Menu_Item %s::%s = %s::%s + %d;\n", k, c, k, menu_name(level), i); + write_c("Fl_Menu_Item %s::%s = %s::%s + %d;\n", k, c, k, menu_name(level), i); } } } @@ -529,5 +529,5 @@ void shortcut_in_cb(Shortcut_Button* i, void* v) { } // -// End of "$Id: Fl_Menu_Type.cxx,v 1.6 1998/12/06 15:45:26 mike Exp $". +// End of "$Id: Fl_Menu_Type.cxx,v 1.7 1998/12/08 21:09:59 mike Exp $". // |
