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/c_fl_help_dialog.cpp | |
parent | 36302e60475e3531d5034fd97cc87aabb9fbd588 (diff) |
Help_Dialog now has Show_With_Args
Diffstat (limited to 'src/c_fl_help_dialog.cpp')
-rw-r--r-- | src/c_fl_help_dialog.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/c_fl_help_dialog.cpp b/src/c_fl_help_dialog.cpp index 9888df9..5eb719e 100644 --- a/src/c_fl_help_dialog.cpp +++ b/src/c_fl_help_dialog.cpp @@ -26,6 +26,10 @@ void fl_help_dialog_show(HELPDIALOG d) { reinterpret_cast<Fl_Help_Dialog*>(d)->show(); } +void fl_help_dialog_show2(HELPDIALOG d, int c, void * v) { + reinterpret_cast<Fl_Help_Dialog*>(d)->show(c, static_cast<char**>(v)); +} + void fl_help_dialog_hide(HELPDIALOG d) { reinterpret_cast<Fl_Help_Dialog*>(d)->hide(); } |