summaryrefslogtreecommitdiff
path: root/src/c_fl_box.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_box.cpp')
-rw-r--r--src/c_fl_box.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/c_fl_box.cpp b/src/c_fl_box.cpp
index 67b4e0b..e9c170d 100644
--- a/src/c_fl_box.cpp
+++ b/src/c_fl_box.cpp
@@ -55,18 +55,18 @@ BOX new_fl_box2(int k, int x, int y, int w, int h, char * label) {
}
void free_fl_box(BOX b) {
- delete reinterpret_cast<My_Box*>(b);
+ delete static_cast<My_Box*>(b);
}
void fl_box_draw(BOX n) {
- reinterpret_cast<My_Box*>(n)->Fl_Box::draw();
+ static_cast<My_Box*>(n)->Fl_Box::draw();
}
int fl_box_handle(BOX n, int e) {
- return reinterpret_cast<My_Box*>(n)->Fl_Box::handle(e);
+ return static_cast<My_Box*>(n)->Fl_Box::handle(e);
}