summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-inputs-secret.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk-widgets-inputs-secret.adb')
-rw-r--r--src/fltk-widgets-inputs-secret.adb14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/fltk-widgets-inputs-secret.adb b/src/fltk-widgets-inputs-secret.adb
index 7fe2a39..0f56085 100644
--- a/src/fltk-widgets-inputs-secret.adb
+++ b/src/fltk-widgets-inputs-secret.adb
@@ -55,16 +55,20 @@ package body FLTK.Widgets.Inputs.Secret is
+ procedure Extra_Final
+ (This : in out Secret_Input) is
+ begin
+ Extra_Final (Input (This));
+ end Extra_Final;
+
+
procedure Finalize
(This : in out Secret_Input) is
begin
- if This.Void_Ptr /= Null_Pointer and then
- This in Secret_Input'Class
- then
+ Extra_Final (This);
+ if This.Void_Ptr /= Null_Pointer and This.Needs_Dealloc then
free_fl_secret_input (This.Void_Ptr);
- This.Void_Ptr := Null_Pointer;
end if;
- Finalize (Input (This));
end Finalize;