diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-16 14:21:05 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-16 14:21:05 +1300 |
commit | dbf6f4db24aee7315b2782a87e127367887e2036 (patch) | |
tree | 91f5af52dbdf6be9e1f5026bcf354a6455dd411d /src/c_fl_jpeg_image.cpp | |
parent | ba1719013e5bab82a2accb4aadfd8451c3ebc931 (diff) |
Changed reinterpret_cast to static_cast where applicable
Diffstat (limited to 'src/c_fl_jpeg_image.cpp')
-rw-r--r-- | src/c_fl_jpeg_image.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/c_fl_jpeg_image.cpp b/src/c_fl_jpeg_image.cpp index 6523e39..63cbe8d 100644 --- a/src/c_fl_jpeg_image.cpp +++ b/src/c_fl_jpeg_image.cpp @@ -10,17 +10,17 @@ -JPEG_IMAGE new_fl_jpeg_image(const char * f) { +JPEGIMAGE new_fl_jpeg_image(const char * f) { Fl_JPEG_Image *j = new Fl_JPEG_Image(f); return j; } -JPEG_IMAGE new_fl_jpeg_image2(const char *n, void *data) { - Fl_JPEG_Image *j = new Fl_JPEG_Image(n, reinterpret_cast<uchar*>(data)); +JPEGIMAGE new_fl_jpeg_image2(const char *n, void *data) { + Fl_JPEG_Image *j = new Fl_JPEG_Image(n, static_cast<uchar*>(data)); return j; } -void free_fl_jpeg_image(JPEG_IMAGE j) { - delete reinterpret_cast<Fl_JPEG_Image*>(j); +void free_fl_jpeg_image(JPEGIMAGE j) { + delete static_cast<Fl_JPEG_Image*>(j); } |