summaryrefslogtreecommitdiff
path: root/src/c_fl_horizontal_slider.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_horizontal_slider.cpp')
-rw-r--r--src/c_fl_horizontal_slider.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/c_fl_horizontal_slider.cpp b/src/c_fl_horizontal_slider.cpp
index 2856a21..638502d 100644
--- a/src/c_fl_horizontal_slider.cpp
+++ b/src/c_fl_horizontal_slider.cpp
@@ -50,18 +50,18 @@ HORIZONTALSLIDER new_fl_horizontal_slider(int x, int y, int w, int h, char* labe
}
void free_fl_horizontal_slider(HORIZONTALSLIDER s) {
- delete reinterpret_cast<My_Horizontal_Slider*>(s);
+ delete static_cast<My_Horizontal_Slider*>(s);
}
void fl_horizontal_slider_draw(HORIZONTALSLIDER s) {
- reinterpret_cast<My_Horizontal_Slider*>(s)->Fl_Hor_Slider::draw();
+ static_cast<My_Horizontal_Slider*>(s)->Fl_Hor_Slider::draw();
}
int fl_horizontal_slider_handle(HORIZONTALSLIDER s, int e) {
- return reinterpret_cast<My_Horizontal_Slider*>(s)->Fl_Hor_Slider::handle(e);
+ return static_cast<My_Horizontal_Slider*>(s)->Fl_Hor_Slider::handle(e);
}