summaryrefslogtreecommitdiff
path: root/src/c_fl_menu_window.cpp
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2017-05-07 12:04:33 +1000
committerJed Barber <jjbarber@y7mail.com>2017-05-07 12:04:33 +1000
commitdf843c7fe48f33d25981d03975e670a3e7159031 (patch)
tree32ad270bf18d5bedadd255a42c0b013332609488 /src/c_fl_menu_window.cpp
parentc2c5985b130e02b970cb6bf88c9a81e6e72c6646 (diff)
Further code cleanup
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();
}