diff options
Diffstat (limited to 'src/c_fl_check_button.cpp')
-rw-r--r-- | src/c_fl_check_button.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/c_fl_check_button.cpp b/src/c_fl_check_button.cpp index 2eb61a1..8dab449 100644 --- a/src/c_fl_check_button.cpp +++ b/src/c_fl_check_button.cpp @@ -66,18 +66,18 @@ CHECKBUTTON new_fl_check_button(int x, int y, int w, int h, char* label) { } void free_fl_check_button(CHECKBUTTON b) { - delete reinterpret_cast<My_Check_Button*>(b); + delete static_cast<My_Check_Button*>(b); } void fl_check_button_draw(CHECKBUTTON b) { - reinterpret_cast<My_Check_Button*>(b)->Fl_Check_Button::draw(); + static_cast<My_Check_Button*>(b)->Fl_Check_Button::draw(); } int fl_check_button_handle(CHECKBUTTON b, int e) { - return reinterpret_cast<My_Check_Button*>(b)->Fl_Check_Button::handle(e); + return static_cast<My_Check_Button*>(b)->Fl_Check_Button::handle(e); } |