diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-16 14:21:05 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-16 14:21:05 +1300 |
commit | dbf6f4db24aee7315b2782a87e127367887e2036 (patch) | |
tree | 91f5af52dbdf6be9e1f5026bcf354a6455dd411d /src/c_fl_radio_round_button.cpp | |
parent | ba1719013e5bab82a2accb4aadfd8451c3ebc931 (diff) |
Changed reinterpret_cast to static_cast where applicable
Diffstat (limited to 'src/c_fl_radio_round_button.cpp')
-rw-r--r-- | src/c_fl_radio_round_button.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/c_fl_radio_round_button.cpp b/src/c_fl_radio_round_button.cpp index 5ddaa1f..b09e1f3 100644 --- a/src/c_fl_radio_round_button.cpp +++ b/src/c_fl_radio_round_button.cpp @@ -50,7 +50,7 @@ RADIOROUNDBUTTON new_fl_radio_round_button(int x, int y, int w, int h, char* lab } void free_fl_radio_round_button(RADIOROUNDBUTTON b) { - delete reinterpret_cast<My_Radio_Round_Button*>(b); + delete static_cast<My_Radio_Round_Button*>(b); } @@ -58,11 +58,11 @@ void free_fl_radio_round_button(RADIOROUNDBUTTON b) { void fl_radio_round_button_draw(RADIOROUNDBUTTON b) { - reinterpret_cast<My_Radio_Round_Button*>(b)->Fl_Radio_Round_Button::draw(); + static_cast<My_Radio_Round_Button*>(b)->Fl_Radio_Round_Button::draw(); } int fl_radio_round_button_handle(RADIOROUNDBUTTON b, int e) { - return reinterpret_cast<My_Radio_Round_Button*>(b)->Fl_Radio_Round_Button::handle(e); + return static_cast<My_Radio_Round_Button*>(b)->Fl_Radio_Round_Button::handle(e); } |