diff options
Diffstat (limited to 'src/fltk-widgets-buttons-repeat.adb')
-rw-r--r-- | src/fltk-widgets-buttons-repeat.adb | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/fltk-widgets-buttons-repeat.adb b/src/fltk-widgets-buttons-repeat.adb index e61786f..de4cf29 100644 --- a/src/fltk-widgets-buttons-repeat.adb +++ b/src/fltk-widgets-buttons-repeat.adb @@ -55,16 +55,20 @@ package body FLTK.Widgets.Buttons.Repeat is + procedure Extra_Final + (This : in out Repeat_Button) is + begin + Extra_Final (Button (This)); + end Extra_Final; + + procedure Finalize (This : in out Repeat_Button) is begin - if This.Void_Ptr /= Null_Pointer and then - This in Repeat_Button'Class - then + Extra_Final (This); + if This.Void_Ptr /= Null_Pointer and This.Needs_Dealloc then free_fl_repeat_button (This.Void_Ptr); - This.Void_Ptr := Null_Pointer; end if; - Finalize (Button (This)); end Finalize; |