summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-menus-choices.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk-widgets-menus-choices.adb')
-rw-r--r--src/fltk-widgets-menus-choices.adb12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/fltk-widgets-menus-choices.adb b/src/fltk-widgets-menus-choices.adb
index 72a7dae..b306c9b 100644
--- a/src/fltk-widgets-menus-choices.adb
+++ b/src/fltk-widgets-menus-choices.adb
@@ -97,6 +97,13 @@ package body FLTK.Widgets.Menus.Choices is
end Finalize;
+ procedure Extra_Init
+ (This : in out Choice;
+ X, Y, W, H : in Integer;
+ Text : in String) is
+ begin
+ Extra_Init (Menu (This), X, Y, W, H, Text);
+ end Extra_Init;
package body Forge is
@@ -113,12 +120,9 @@ package body FLTK.Widgets.Menus.Choices is
Interfaces.C.int (W),
Interfaces.C.int (H),
Interfaces.C.To_C (Text));
- fl_widget_set_user_data
- (This.Void_Ptr,
- Storage.To_Integer (Widget_Convert.To_Address (This'Unchecked_Access)));
+ Extra_Init (This, X, Y, W, H, Text);
choice_set_draw_hook (This.Void_Ptr, Storage.To_Integer (Draw_Hook'Address));
choice_set_handle_hook (This.Void_Ptr, Storage.To_Integer (Handle_Hook'Address));
- fl_widget_set_label (This.Void_Ptr, Interfaces.C.To_C (Text));
end return;
end Create;