diff options
| author | Matthias Melcher <github@matthiasm.com> | 2022-01-11 23:01:48 +0100 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2022-01-11 23:01:48 +0100 |
| commit | b2498781dee44b23632f79ab97f219c86981d40a (patch) | |
| tree | a5c32353ba07c332c2139652bfa4300470b09a7e | |
| parent | 59384b359cf1d4572c20216e4700e26e77d36733 (diff) | |
Reintroducing delet o;
| -rw-r--r-- | fluid/Fl_Widget_Type.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fluid/Fl_Widget_Type.cxx b/fluid/Fl_Widget_Type.cxx index e0f9d319e..b35355f4e 100644 --- a/fluid/Fl_Widget_Type.cxx +++ b/fluid/Fl_Widget_Type.cxx @@ -219,7 +219,7 @@ Fl_Widget_Type::~Fl_Widget_Type() { win->redraw(); if (o->parent()) ((Fl_Group*)o->parent())->remove(*o); - Fl::delete_widget(o); + delete o; } if (subclass_) free((void*)subclass_); if (tooltip_) free((void*)tooltip_); |
