summaryrefslogtreecommitdiff
path: root/src/c_fl_menu_window.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_menu_window.cpp')
-rw-r--r--src/c_fl_menu_window.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/c_fl_menu_window.cpp b/src/c_fl_menu_window.cpp
index 8445978..e488479 100644
--- a/src/c_fl_menu_window.cpp
+++ b/src/c_fl_menu_window.cpp
@@ -64,31 +64,31 @@ void free_fl_menu_window(MENUWINDOW m) {
void fl_menu_window_show(MENUWINDOW m) {
- reinterpret_cast<My_Menu_Window*>(m)->show();
+ reinterpret_cast<Fl_Menu_Window*>(m)->show();
}
void fl_menu_window_hide(MENUWINDOW m) {
- reinterpret_cast<My_Menu_Window*>(m)->hide();
+ reinterpret_cast<Fl_Menu_Window*>(m)->hide();
}
void fl_menu_window_flush(MENUWINDOW m) {
- reinterpret_cast<My_Menu_Window*>(m)->flush();
+ reinterpret_cast<Fl_Menu_Window*>(m)->flush();
}
void fl_menu_window_set_overlay(MENUWINDOW m) {
- reinterpret_cast<My_Menu_Window*>(m)->set_overlay();
+ reinterpret_cast<Fl_Menu_Window*>(m)->set_overlay();
}
void fl_menu_window_clear_overlay(MENUWINDOW m) {
- reinterpret_cast<My_Menu_Window*>(m)->clear_overlay();
+ reinterpret_cast<Fl_Menu_Window*>(m)->clear_overlay();
}
unsigned int fl_menu_window_overlay(MENUWINDOW m) {
- return reinterpret_cast<My_Menu_Window*>(m)->overlay();
+ return reinterpret_cast<Fl_Menu_Window*>(m)->overlay();
}