summaryrefslogtreecommitdiff
path: root/src/c_fl_wizard.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_wizard.cpp')
-rw-r--r--src/c_fl_wizard.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/c_fl_wizard.cpp b/src/c_fl_wizard.cpp
index 7ed33db..0d7ba4b 100644
--- a/src/c_fl_wizard.cpp
+++ b/src/c_fl_wizard.cpp
@@ -85,22 +85,22 @@ void free_fl_wizard(WIZARD w) {
void fl_wizard_next(WIZARD w) {
- reinterpret_cast<My_Wizard*>(w)->next();
+ reinterpret_cast<Fl_Wizard*>(w)->next();
}
void fl_wizard_prev(WIZARD w) {
- reinterpret_cast<My_Wizard*>(w)->prev();
+ reinterpret_cast<Fl_Wizard*>(w)->prev();
}
void * fl_wizard_get_visible(WIZARD w) {
- return reinterpret_cast<My_Wizard*>(w)->value();
+ return reinterpret_cast<Fl_Wizard*>(w)->value();
}
void fl_wizard_set_visible(WIZARD w, void * i) {
- reinterpret_cast<My_Wizard*>(w)->value(reinterpret_cast<Fl_Widget*>(i));
+ reinterpret_cast<Fl_Wizard*>(w)->value(reinterpret_cast<Fl_Widget*>(i));
}