From 727cd771facf506910ddbb63532b3b6af7fb1b77 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Mon, 1 May 2017 20:53:10 +1000 Subject: Draw method implemented for all Button variations (ugh) --- src/fltk-widgets-buttons-radio.ads | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/fltk-widgets-buttons-radio.ads') diff --git a/src/fltk-widgets-buttons-radio.ads b/src/fltk-widgets-buttons-radio.ads index cf14eeb..eb0dd4a 100644 --- a/src/fltk-widgets-buttons-radio.ads +++ b/src/fltk-widgets-buttons-radio.ads @@ -15,6 +15,10 @@ package FLTK.Widgets.Buttons.Radio is private + procedure Draw + (This : in out Radio_Button); + + type Radio_Button is new Button with null record; @@ -22,5 +26,9 @@ private (This : in out Radio_Button); + package Radio_Button_Convert is new System.Address_To_Access_Conversions + (Radio_Button'Class); + + end FLTK.Widgets.Buttons.Radio; -- cgit