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_button.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/c_fl_button.cpp') diff --git a/src/c_fl_button.cpp b/src/c_fl_button.cpp index 233e4ab..f031ff9 100644 --- a/src/c_fl_button.cpp +++ b/src/c_fl_button.cpp @@ -58,16 +58,16 @@ void free_fl_button(BUTTON b) { int fl_button_get_state(BUTTON b) { - return reinterpret_cast(b)->value(); + return reinterpret_cast(b)->value(); } void fl_button_set_state(BUTTON b, int s) { - reinterpret_cast(b)->value(s); + reinterpret_cast(b)->value(s); } void fl_button_set_only(BUTTON b) { - reinterpret_cast(b)->setonly(); + reinterpret_cast(b)->setonly(); } -- cgit