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_adjuster.cpp | |
parent | ba1719013e5bab82a2accb4aadfd8451c3ebc931 (diff) |
Changed reinterpret_cast to static_cast where applicable
Diffstat (limited to 'src/c_fl_adjuster.cpp')
-rw-r--r-- | src/c_fl_adjuster.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/c_fl_adjuster.cpp b/src/c_fl_adjuster.cpp index 1b9db8e..4cd2b70 100644 --- a/src/c_fl_adjuster.cpp +++ b/src/c_fl_adjuster.cpp @@ -60,33 +60,33 @@ ADJUSTER new_fl_adjuster(int x, int y, int w, int h, char* label) { } void free_fl_adjuster(ADJUSTER a) { - delete reinterpret_cast<My_Adjuster*>(a); + delete static_cast<My_Adjuster*>(a); } int fl_adjuster_is_soft(ADJUSTER a) { - return reinterpret_cast<Fl_Adjuster*>(a)->soft(); + return static_cast<Fl_Adjuster*>(a)->soft(); } void fl_adjuster_set_soft(ADJUSTER a, int t) { - reinterpret_cast<Fl_Adjuster*>(a)->soft(t); + static_cast<Fl_Adjuster*>(a)->soft(t); } void fl_adjuster_value_damage(ADJUSTER a) { - (reinterpret_cast<Fl_Adjuster*>(a)->*(&Friend_Adjuster::value_damage))(); + (static_cast<Fl_Adjuster*>(a)->*(&Friend_Adjuster::value_damage))(); } void fl_adjuster_draw(ADJUSTER a) { - reinterpret_cast<My_Adjuster*>(a)->Fl_Adjuster::draw(); + static_cast<My_Adjuster*>(a)->Fl_Adjuster::draw(); } int fl_adjuster_handle(ADJUSTER a, int e) { - return reinterpret_cast<My_Adjuster*>(a)->Fl_Adjuster::handle(e); + return static_cast<My_Adjuster*>(a)->Fl_Adjuster::handle(e); } |