summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-buttons-repeat.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk-widgets-buttons-repeat.adb')
-rw-r--r--src/fltk-widgets-buttons-repeat.adb5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/fltk-widgets-buttons-repeat.adb b/src/fltk-widgets-buttons-repeat.adb
index 7d0f0bd..8e7c9f3 100644
--- a/src/fltk-widgets-buttons-repeat.adb
+++ b/src/fltk-widgets-buttons-repeat.adb
@@ -59,10 +59,11 @@ package body FLTK.Widgets.Buttons.Repeat is
procedure Finalize
(This : in out Repeat_Button) is
begin
- if This in Repeat_Button and then
- This.Void_Ptr /= System.Null_Address
+ if This.Void_Ptr /= System.Null_Address and then
+ This in Repeat_Button'Class
then
free_fl_repeat_button (This.Void_Ptr);
+ This.Void_Ptr := System.Null_Address;
end if;
Finalize (Button (This));
end Finalize;