Clears value() when you clear the menu()

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@433 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Bill Spitzak
1999-03-16 08:44:48 +00:00
parent 8b80ea35fe
commit 860eda9df2
+3 -2
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Menu_.cxx,v 1.7 1999/03/04 17:36:08 mike Exp $" // "$Id: Fl_Menu_.cxx,v 1.7.2.1 1999/03/16 08:44:48 bill Exp $"
// //
// Common menu code for the Fast Light Tool Kit (FLTK). // Common menu code for the Fast Light Tool Kit (FLTK).
// //
@@ -135,10 +135,11 @@ void Fl_Menu_::clear() {
if (menu_[i].text) free((void*)menu_[i].text); if (menu_[i].text) free((void*)menu_[i].text);
delete[] menu_; delete[] menu_;
menu_ = 0; menu_ = 0;
value_ = 0;
alloc = 0; alloc = 0;
} }
} }
// //
// End of "$Id: Fl_Menu_.cxx,v 1.7 1999/03/04 17:36:08 mike Exp $". // End of "$Id: Fl_Menu_.cxx,v 1.7.2.1 1999/03/16 08:44:48 bill Exp $".
// //