From f8b638b57cc1318ef3536efae662b54b3d14a3bb Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Sun, 12 Jan 2025 13:16:48 +1300 Subject: Added show(int argc, char **argv) methods for Window classes --- src/c_fl_window.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/c_fl_window.cpp') diff --git a/src/c_fl_window.cpp b/src/c_fl_window.cpp index 37c8a44..631c98b 100644 --- a/src/c_fl_window.cpp +++ b/src/c_fl_window.cpp @@ -67,6 +67,10 @@ void fl_window_show(WINDOW n) { reinterpret_cast(n)->Fl_Window::show(); } +void fl_window_show2(WINDOW n, int c, void * v) { + reinterpret_cast(n)->show(c, static_cast(v)); +} + void fl_window_hide(WINDOW n) { // virtual, so disable dispatch reinterpret_cast(n)->Fl_Window::hide(); -- cgit