diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-13 12:29:26 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-13 12:29:26 +1300 |
commit | 74cb50a7f7e14cec7195d30e50b76e17969c9e62 (patch) | |
tree | 4d3941218bb7099bb317fbbb88dfb698a990161b /src/fltk-widgets-groups-windows-opengl.adb | |
parent | 36302e60475e3531d5034fd97cc87aabb9fbd588 (diff) |
Help_Dialog now has Show_With_Args
Diffstat (limited to 'src/fltk-widgets-groups-windows-opengl.adb')
-rw-r--r-- | src/fltk-widgets-groups-windows-opengl.adb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fltk-widgets-groups-windows-opengl.adb b/src/fltk-widgets-groups-windows-opengl.adb index 1b8bea7..e949f2d 100644 --- a/src/fltk-widgets-groups-windows-opengl.adb +++ b/src/fltk-widgets-groups-windows-opengl.adb @@ -6,6 +6,7 @@ with + FLTK.Show_Argv, Interfaces.C, System; @@ -316,7 +317,7 @@ package body FLTK.Widgets.Groups.Windows.OpenGL is procedure Show_With_Args (This : in out GL_Window) is begin - Dispatch_Show_With_Args (fl_gl_window_show2'Access, This.Void_Ptr); + FLTK.Show_Argv.Dispatch (fl_gl_window_show2'Access, This.Void_Ptr); end Show_With_Args; |