summaryrefslogtreecommitdiff
path: root/src/c_fl_xpm_image.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_xpm_image.cpp')
-rw-r--r--src/c_fl_xpm_image.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/c_fl_xpm_image.cpp b/src/c_fl_xpm_image.cpp
index 7902020..fcf60c2 100644
--- a/src/c_fl_xpm_image.cpp
+++ b/src/c_fl_xpm_image.cpp
@@ -10,12 +10,13 @@
-XPM_IMAGE new_fl_xpm_image(const char * f) {
+XPMIMAGE new_fl_xpm_image(const char * f) {
Fl_XPM_Image *j = new Fl_XPM_Image(f);
return j;
}
-void free_fl_xpm_image(XPM_IMAGE j) {
- delete reinterpret_cast<Fl_XPM_Image*>(j);
+void free_fl_xpm_image(XPMIMAGE j) {
+ delete static_cast<Fl_XPM_Image*>(j);
}
+