summaryrefslogtreecommitdiff
path: root/src/c_fl_clock.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_clock.cpp')
-rw-r--r--src/c_fl_clock.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/c_fl_clock.cpp b/src/c_fl_clock.cpp
index a7e570e..e2df99c 100644
--- a/src/c_fl_clock.cpp
+++ b/src/c_fl_clock.cpp
@@ -55,18 +55,18 @@ CLOCK new_fl_clock2(unsigned char k, int x, int y, int w, int h, char* label) {
}
void free_fl_clock(CLOCK c) {
- delete reinterpret_cast<My_Clock*>(c);
+ delete static_cast<My_Clock*>(c);
}
void fl_clock_draw(CLOCK c) {
- reinterpret_cast<My_Clock*>(c)->Fl_Clock::draw();
+ static_cast<My_Clock*>(c)->Fl_Clock::draw();
}
int fl_clock_handle(CLOCK c, int e) {
- return reinterpret_cast<My_Clock*>(c)->Fl_Clock::handle(e);
+ return static_cast<My_Clock*>(c)->Fl_Clock::handle(e);
}