aboutsummaryrefslogtreecommitdiff
path: root/body/fltk-file_choosers.adb
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-04-14 16:01:23 +1200
committerJedidiah Barber <contact@jedbarber.id.au>2025-04-14 16:01:23 +1200
commit2c15b311f6942ec92fa44d91831ba991d40ac545 (patch)
tree632459455a86af1e1168c750356cb1667c716e7f /body/fltk-file_choosers.adb
parentd250a4858b95697ecf792bd9d31e712ca441c73e (diff)
Removed superfluous extra_final stuffHEADmaster
Diffstat (limited to 'body/fltk-file_choosers.adb')
-rw-r--r--body/fltk-file_choosers.adb17
1 files changed, 0 insertions, 17 deletions
diff --git a/body/fltk-file_choosers.adb b/body/fltk-file_choosers.adb
index a5eac34..ef33753 100644
--- a/body/fltk-file_choosers.adb
+++ b/body/fltk-file_choosers.adb
@@ -535,28 +535,11 @@ package body FLTK.File_Choosers is
-- Destructors --
-------------------
- -- Releasing carrier pigeon
- procedure fl_button_extra_final
- (Ada_Obj : in Storage.Integer_Address);
- pragma Import (C, fl_button_extra_final, "fl_button_extra_final");
- pragma Inline (fl_button_extra_final);
-
-
- -- Entering wormhole
- procedure fl_check_button_extra_final
- (Ada_Obj : in Storage.Integer_Address);
- pragma Import (C, fl_check_button_extra_final, "fl_check_button_extra_final");
- pragma Inline (fl_check_button_extra_final);
-
-
procedure Extra_Final
(This : in out File_Chooser)
is
use Interfaces.C.Strings;
begin
- fl_button_extra_final (Storage.To_Integer (This.New_Butt'Address));
- fl_check_button_extra_final (Storage.To_Integer (This.Preview_Butt'Address));
- fl_check_button_extra_final (Storage.To_Integer (This.Hidden_Butt'Address));
Free (This.My_Label);
Free (This.My_OK_Label);
end Extra_Final;