summaryrefslogtreecommitdiff
path: root/src/c_fl_secret_input.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_secret_input.cpp
parentba1719013e5bab82a2accb4aadfd8451c3ebc931 (diff)
Changed reinterpret_cast to static_cast where applicable
Diffstat (limited to 'src/c_fl_secret_input.cpp')
-rw-r--r--src/c_fl_secret_input.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/c_fl_secret_input.cpp b/src/c_fl_secret_input.cpp
index 9bf1753..b3205cb 100644
--- a/src/c_fl_secret_input.cpp
+++ b/src/c_fl_secret_input.cpp
@@ -50,18 +50,18 @@ SECRETINPUT new_fl_secret_input(int x, int y, int w, int h, char* label) {
}
void free_fl_secret_input(SECRETINPUT i) {
- delete reinterpret_cast<My_Secret_Input*>(i);
+ delete static_cast<My_Secret_Input*>(i);
}
void fl_secret_input_draw(SECRETINPUT i) {
- reinterpret_cast<My_Secret_Input*>(i)->Fl_Secret_Input::draw();
+ static_cast<My_Secret_Input*>(i)->Fl_Secret_Input::draw();
}
int fl_secret_input_handle(SECRETINPUT i, int e) {
- return reinterpret_cast<My_Secret_Input*>(i)->Fl_Secret_Input::handle(e);
+ return static_cast<My_Secret_Input*>(i)->Fl_Secret_Input::handle(e);
}