summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-inputs-integer.adb
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2018-04-17 16:00:26 +1000
committerJed Barber <jjbarber@y7mail.com>2018-04-17 16:00:26 +1000
commit617353265e4dc4e0280b565f2cd9e7749ce52bfd (patch)
treeb03cbfad780fb426ef42660ff6e112cdcaeda9f4 /src/fltk-widgets-inputs-integer.adb
parenta4b6a06f372923fb38ae4d3c7e0429ce93ea7748 (diff)
More polishing
Diffstat (limited to 'src/fltk-widgets-inputs-integer.adb')
-rw-r--r--src/fltk-widgets-inputs-integer.adb6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/fltk-widgets-inputs-integer.adb b/src/fltk-widgets-inputs-integer.adb
index b82545a..2f41e73 100644
--- a/src/fltk-widgets-inputs-integer.adb
+++ b/src/fltk-widgets-inputs-integer.adb
@@ -16,10 +16,12 @@ package body FLTK.Widgets.Inputs.Integer is
procedure int_input_set_draw_hook
(W, D : in System.Address);
pragma Import (C, int_input_set_draw_hook, "int_input_set_draw_hook");
+ pragma Inline (int_input_set_draw_hook);
procedure int_input_set_handle_hook
(W, H : in System.Address);
pragma Import (C, int_input_set_handle_hook, "int_input_set_handle_hook");
+ pragma Inline (int_input_set_handle_hook);
@@ -29,10 +31,12 @@ package body FLTK.Widgets.Inputs.Integer is
Text : in Interfaces.C.char_array)
return System.Address;
pragma Import (C, new_fl_int_input, "new_fl_int_input");
+ pragma Inline (new_fl_int_input);
procedure free_fl_int_input
(F : in System.Address);
pragma Import (C, free_fl_int_input, "free_fl_int_input");
+ pragma Inline (free_fl_int_input);
@@ -40,12 +44,14 @@ package body FLTK.Widgets.Inputs.Integer is
procedure fl_int_input_draw
(W : in System.Address);
pragma Import (C, fl_int_input_draw, "fl_int_input_draw");
+ pragma Inline (fl_int_input_draw);
function fl_int_input_handle
(W : in System.Address;
E : in Interfaces.C.int)
return Interfaces.C.int;
pragma Import (C, fl_int_input_handle, "fl_int_input_handle");
+ pragma Inline (fl_int_input_handle);