summaryrefslogtreecommitdiff
path: root/src/fltk_binding/c_fl_check_button.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk_binding/c_fl_check_button.cpp')
-rw-r--r--src/fltk_binding/c_fl_check_button.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fltk_binding/c_fl_check_button.cpp b/src/fltk_binding/c_fl_check_button.cpp
index 2eafd0f..e737942 100644
--- a/src/fltk_binding/c_fl_check_button.cpp
+++ b/src/fltk_binding/c_fl_check_button.cpp
@@ -4,13 +4,13 @@
#include "c_fl_check_button.h"
-my_fl_check_button new_fl_check_button(int x, int y, int w, int h, char * label) {
- Fl_Check_Button *button = new Fl_Check_Button(x, y, w, h, label);
- return button;
+CHECKBUTTON new_fl_check_button(int x, int y, int w, int h, char* label) {
+ Fl_Check_Button *b = new Fl_Check_Button(x, y, w, h, label);
+ return b;
}
-void free_fl_check_button(my_fl_check_button b) {
+void free_fl_check_button(CHECKBUTTON b) {
delete reinterpret_cast<Fl_Check_Button*>(b);
}