From ca9cca53a19145216cb0e00462db239e1194696d Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sun, 29 Apr 2018 00:39:36 +1000 Subject: FLTK.Event done, a whole bunch more polishing --- src/c_fl_tabs.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/c_fl_tabs.cpp') diff --git a/src/c_fl_tabs.cpp b/src/c_fl_tabs.cpp index 452be6d..3d8e7bc 100644 --- a/src/c_fl_tabs.cpp +++ b/src/c_fl_tabs.cpp @@ -71,29 +71,29 @@ void free_fl_tabs(TABS t) { void fl_tabs_client_area(TABS t, int * x, int * y, int * w, int * h, int i) { - reinterpret_cast(t)->client_area(*x,*y,*w,*h,i); + reinterpret_cast(t)->client_area(*x,*y,*w,*h,i); } void * fl_tabs_get_push(TABS t) { - return reinterpret_cast(t)->push(); + return reinterpret_cast(t)->push(); } void fl_tabs_set_push(TABS t, void * w) { - reinterpret_cast(t)->push(reinterpret_cast(w)); + reinterpret_cast(t)->push(reinterpret_cast(w)); } void * fl_tabs_get_value(TABS t) { - return reinterpret_cast(t)->value(); + return reinterpret_cast(t)->value(); } void fl_tabs_set_value(TABS t, void * w) { - reinterpret_cast(t)->value(reinterpret_cast(w)); + reinterpret_cast(t)->value(reinterpret_cast(w)); } void * fl_tabs_which(TABS t, int x, int y) { - return reinterpret_cast(t)->which(x,y); + return reinterpret_cast(t)->which(x,y); } -- cgit