aboutsummaryrefslogtreecommitdiff
path: root/src/fltk-widgets-groups-text_displays-text_editors.adb
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2024-10-13 03:33:38 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2024-10-13 03:33:38 +1300
commitb4090a7acddf951088b75fcce0d6edb721bbbf45 (patch)
tree6770ea43f82e114c188538213f77e76b4eb5da10 /src/fltk-widgets-groups-text_displays-text_editors.adb
parent87671a2f2423efacd0b0c4ad0c34c244680ef565 (diff)
Fixed bug with Text_Buffers not being deallocated correctly if declared after the Text_Display they are attached to
Diffstat (limited to 'src/fltk-widgets-groups-text_displays-text_editors.adb')
-rw-r--r--src/fltk-widgets-groups-text_displays-text_editors.adb1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fltk-widgets-groups-text_displays-text_editors.adb b/src/fltk-widgets-groups-text_displays-text_editors.adb
index e0d4588..98175a6 100644
--- a/src/fltk-widgets-groups-text_displays-text_editors.adb
+++ b/src/fltk-widgets-groups-text_displays-text_editors.adb
@@ -388,6 +388,7 @@ package body FLTK.Widgets.Groups.Text_Displays.Text_Editors is
then
This.Clear;
free_fl_text_editor (This.Void_Ptr);
+ free_fl_text_buffer (This.Raw_Buffer);
This.Void_Ptr := Null_Pointer;
end if;
Finalize (Text_Display (This));