From d592f1c4aaeb649e96d62c969fd02f179ba8f528 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Tue, 19 Jan 1999 19:24:32 +0000 Subject: [PATCH] Forgot the leading * on the pointer name for menu items. git-svn-id: file:///fltk/svn/fltk/trunk@234 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 d9aed45ce..7d0ebd4b7 100644 --- a/fluid/Fl_Menu_Type.cxx +++ b/fluid/Fl_Menu_Type.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_Menu_Type.cxx,v 1.10 1999/01/19 19:10:38 mike Exp $" +// "$Id: Fl_Menu_Type.cxx,v 1.11 1999/01/19 19:24:32 mike Exp $" // // Menu item code for the Fast Light Tool Kit (FLTK). // @@ -224,7 +224,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("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.10 1999/01/19 19:10:38 mike Exp $". +// End of "$Id: Fl_Menu_Type.cxx,v 1.11 1999/01/19 19:24:32 mike Exp $". //