From dbf6f4db24aee7315b2782a87e127367887e2036 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Thu, 16 Jan 2025 14:21:05 +1300 Subject: Changed reinterpret_cast to static_cast where applicable --- src/c_fl_repeat_button.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/c_fl_repeat_button.cpp') diff --git a/src/c_fl_repeat_button.cpp b/src/c_fl_repeat_button.cpp index 7f05235..c3eb582 100644 --- a/src/c_fl_repeat_button.cpp +++ b/src/c_fl_repeat_button.cpp @@ -50,25 +50,25 @@ REPEATBUTTON new_fl_repeat_button(int x, int y, int w, int h, char* label) { } void free_fl_repeat_button(REPEATBUTTON b) { - delete reinterpret_cast(b); + delete static_cast(b); } void fl_repeat_button_deactivate(REPEATBUTTON b) { - reinterpret_cast(b)->deactivate(); + static_cast(b)->deactivate(); } void fl_repeat_button_draw(REPEATBUTTON b) { - reinterpret_cast(b)->Fl_Repeat_Button::draw(); + static_cast(b)->Fl_Repeat_Button::draw(); } int fl_repeat_button_handle(REPEATBUTTON b, int e) { - return reinterpret_cast(b)->Fl_Repeat_Button::handle(e); + return static_cast(b)->Fl_Repeat_Button::handle(e); } -- cgit