diff options
| author | Matthias Melcher <github@matthiasm.com> | 2022-11-01 20:45:31 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-01 20:45:31 +0100 |
| commit | 33f01ecb836f9bd70447fcd7ab0f7eda27d224db (patch) | |
| tree | 4f0c640c3199e34aa47962569d5eeafb930de051 /fluid | |
| parent | c570bd8f96902a2f290f7623b8cf3074ac8f97ca (diff) | |
Added Fl_Group::on_insert/on_remove/on_move (#527)
Diffstat (limited to 'fluid')
| -rw-r--r-- | fluid/Fl_Group_Type.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fluid/Fl_Group_Type.cxx b/fluid/Fl_Group_Type.cxx index 0ab8efcb0..5bc3525d9 100644 --- a/fluid/Fl_Group_Type.cxx +++ b/fluid/Fl_Group_Type.cxx @@ -550,7 +550,6 @@ void Fl_Table_Type::remove_child(Fl_Type* cc) { void Fl_Group_Type::move_child(Fl_Type* cc, Fl_Type* before) { Fl_Widget_Type* c = (Fl_Widget_Type*)cc; Fl_Widget* b = before ? ((Fl_Widget_Type*)before)->o : 0; - ((Fl_Group*)o)->remove(c->o); ((Fl_Group*)o)->insert(*(c->o), b); o->redraw(); } @@ -558,7 +557,6 @@ void Fl_Group_Type::move_child(Fl_Type* cc, Fl_Type* before) { void Fl_Table_Type::move_child(Fl_Type* cc, Fl_Type* before) { Fl_Widget_Type* c = (Fl_Widget_Type*)cc; Fl_Widget* b = before ? ((Fl_Widget_Type*)before)->o : 0; - ((Fl_Table*)o)->remove(*(c->o)); ((Fl_Table*)o)->insert(*(c->o), b); o->redraw(); } |
