summaryrefslogtreecommitdiff
path: root/src/c_fl_xbm_image.cpp
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-01-16 14:21:05 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2025-01-16 14:21:05 +1300
commitdbf6f4db24aee7315b2782a87e127367887e2036 (patch)
tree91f5af52dbdf6be9e1f5026bcf354a6455dd411d /src/c_fl_xbm_image.cpp
parentba1719013e5bab82a2accb4aadfd8451c3ebc931 (diff)
Changed reinterpret_cast to static_cast where applicable
Diffstat (limited to 'src/c_fl_xbm_image.cpp')
-rw-r--r--src/c_fl_xbm_image.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/c_fl_xbm_image.cpp b/src/c_fl_xbm_image.cpp
index 7bb6ccf..2ecd890 100644
--- a/src/c_fl_xbm_image.cpp
+++ b/src/c_fl_xbm_image.cpp
@@ -10,12 +10,13 @@
-XBM_IMAGE new_fl_xbm_image(const char * f) {
+XBMIMAGE new_fl_xbm_image(const char * f) {
Fl_XBM_Image *b = new Fl_XBM_Image(f);
return b;
}
-void free_fl_xbm_image(XBM_IMAGE b) {
- delete reinterpret_cast<Fl_XBM_Image*>(b);
+void free_fl_xbm_image(XBMIMAGE b) {
+ delete static_cast<Fl_XBM_Image*>(b);
}
+