summaryrefslogtreecommitdiff
path: root/src/c_fl_light_button.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_light_button.cpp')
-rw-r--r--src/c_fl_light_button.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/c_fl_light_button.cpp b/src/c_fl_light_button.cpp
index f8d52a8..e11ce64 100644
--- a/src/c_fl_light_button.cpp
+++ b/src/c_fl_light_button.cpp
@@ -50,18 +50,18 @@ LIGHTBUTTON new_fl_light_button(int x, int y, int w, int h, char* label) {
}
void free_fl_light_button(LIGHTBUTTON b) {
- delete reinterpret_cast<My_Light_Button*>(b);
+ delete static_cast<My_Light_Button*>(b);
}
void fl_light_button_draw(LIGHTBUTTON b) {
- reinterpret_cast<My_Light_Button*>(b)->Fl_Light_Button::draw();
+ static_cast<My_Light_Button*>(b)->Fl_Light_Button::draw();
}
int fl_light_button_handle(LIGHTBUTTON b, int e) {
- return reinterpret_cast<My_Light_Button*>(b)->Fl_Light_Button::handle(e);
+ return static_cast<My_Light_Button*>(b)->Fl_Light_Button::handle(e);
}