summaryrefslogtreecommitdiff
path: root/src/c_fl_tabs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_tabs.cpp')
-rw-r--r--src/c_fl_tabs.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/c_fl_tabs.cpp b/src/c_fl_tabs.cpp
index 452be6d..3d8e7bc 100644
--- a/src/c_fl_tabs.cpp
+++ b/src/c_fl_tabs.cpp
@@ -71,29 +71,29 @@ void free_fl_tabs(TABS t) {
void fl_tabs_client_area(TABS t, int * x, int * y, int * w, int * h, int i) {
- reinterpret_cast<My_Tabs*>(t)->client_area(*x,*y,*w,*h,i);
+ reinterpret_cast<Fl_Tabs*>(t)->client_area(*x,*y,*w,*h,i);
}
void * fl_tabs_get_push(TABS t) {
- return reinterpret_cast<My_Tabs*>(t)->push();
+ return reinterpret_cast<Fl_Tabs*>(t)->push();
}
void fl_tabs_set_push(TABS t, void * w) {
- reinterpret_cast<My_Tabs*>(t)->push(reinterpret_cast<Fl_Widget*>(w));
+ reinterpret_cast<Fl_Tabs*>(t)->push(reinterpret_cast<Fl_Widget*>(w));
}
void * fl_tabs_get_value(TABS t) {
- return reinterpret_cast<My_Tabs*>(t)->value();
+ return reinterpret_cast<Fl_Tabs*>(t)->value();
}
void fl_tabs_set_value(TABS t, void * w) {
- reinterpret_cast<My_Tabs*>(t)->value(reinterpret_cast<Fl_Widget*>(w));
+ reinterpret_cast<Fl_Tabs*>(t)->value(reinterpret_cast<Fl_Widget*>(w));
}
void * fl_tabs_which(TABS t, int x, int y) {
- return reinterpret_cast<My_Tabs*>(t)->which(x,y);
+ return reinterpret_cast<Fl_Tabs*>(t)->which(x,y);
}