summaryrefslogtreecommitdiff
path: root/src/c_fl_value_slider.cpp
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2018-04-21 00:19:09 +1000
committerJed Barber <jjbarber@y7mail.com>2018-04-21 00:19:09 +1000
commitae3aaf71338960e85d27c88d7004497409c6a6d9 (patch)
treeef32eb7dcd82406fe4c65df53944d4f6ca9ab04c /src/c_fl_value_slider.cpp
parent5c1f074e4db5d2e701011c60cc3e6f486fb2ecf4 (diff)
More polishing, fixing of minor overlooked things, etc
Diffstat (limited to 'src/c_fl_value_slider.cpp')
-rw-r--r--src/c_fl_value_slider.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/c_fl_value_slider.cpp b/src/c_fl_value_slider.cpp
index 757424c..aa819af 100644
--- a/src/c_fl_value_slider.cpp
+++ b/src/c_fl_value_slider.cpp
@@ -71,26 +71,26 @@ void free_fl_value_slider(VALUE_SLIDER s) {
unsigned int fl_value_slider_get_textcolor(VALUE_SLIDER s) {
- return reinterpret_cast<My_Value_Slider*>(s)->textcolor();
+ return reinterpret_cast<Fl_Value_Slider*>(s)->textcolor();
}
void fl_value_slider_set_textcolor(VALUE_SLIDER s, unsigned int t) {
- reinterpret_cast<My_Value_Slider*>(s)->textcolor(t);
+ reinterpret_cast<Fl_Value_Slider*>(s)->textcolor(t);
}
int fl_value_slider_get_textfont(VALUE_SLIDER s) {
- return reinterpret_cast<My_Value_Slider*>(s)->textfont();
+ return reinterpret_cast<Fl_Value_Slider*>(s)->textfont();
}
void fl_value_slider_set_textfont(VALUE_SLIDER s, int t) {
- reinterpret_cast<My_Value_Slider*>(s)->textfont(t);
+ reinterpret_cast<Fl_Value_Slider*>(s)->textfont(t);
}
int fl_value_slider_get_textsize(VALUE_SLIDER s) {
- return reinterpret_cast<My_Value_Slider*>(s)->textsize();
+ return reinterpret_cast<Fl_Value_Slider*>(s)->textsize();
}
void fl_value_slider_set_textsize(VALUE_SLIDER s, int t) {
- reinterpret_cast<My_Value_Slider*>(s)->textsize(t);
+ reinterpret_cast<Fl_Value_Slider*>(s)->textsize(t);
}