From 57a983ea8303e55a534270c23fc34d0b7efe1e31 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Tue, 8 Dec 1998 21:09:59 +0000 Subject: 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 --- fluid/Fl_Menu_Type.cxx | 6 +++--- 1 file 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 $". // -- cgit v1.2.3