From df843c7fe48f33d25981d03975e670a3e7159031 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sun, 7 May 2017 12:04:33 +1000 Subject: Further code cleanup --- src/c_fl_window.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/c_fl_window.cpp') diff --git a/src/c_fl_window.cpp b/src/c_fl_window.cpp index eda235a..1413646 100644 --- a/src/c_fl_window.cpp +++ b/src/c_fl_window.cpp @@ -67,36 +67,36 @@ void free_fl_window(WINDOW n) { void fl_window_show(WINDOW n) { - reinterpret_cast(n)->show(); + reinterpret_cast(n)->show(); } void fl_window_hide(WINDOW n) { - reinterpret_cast(n)->hide(); + reinterpret_cast(n)->hide(); } void fl_window_set_label(WINDOW n, char* text) { - reinterpret_cast(n)->copy_label(text); + reinterpret_cast(n)->copy_label(text); } void fl_window_size_range(WINDOW n, int lw, int lh, int hw, int hh, int dw, int dh, int a) { - reinterpret_cast(n)->size_range(lw, lh, hw, hh, dw, dh, a); + reinterpret_cast(n)->size_range(lw, lh, hw, hh, dw, dh, a); } void fl_window_set_icon(WINDOW n, void * img) { - reinterpret_cast(n)->icon(reinterpret_cast(img)); + reinterpret_cast(n)->icon(reinterpret_cast(img)); } void fl_window_set_modal(WINDOW n) { - reinterpret_cast(n)->set_modal(); + reinterpret_cast(n)->set_modal(); } void fl_window_set_non_modal(WINDOW n) { - reinterpret_cast(n)->set_non_modal(); + reinterpret_cast(n)->set_non_modal(); } -- cgit