diff options
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/table-as-container.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/table-as-container.cxx b/examples/table-as-container.cxx index 838c55512..d5887439d 100644 --- a/examples/table-as-container.cxx +++ b/examples/table-as-container.cxx @@ -31,7 +31,6 @@ #include <FL/Fl_Input.H> #include <FL/fl_draw.H> #include <FL/Fl_Table.H> -#include <FL/fl_string.h> // fl_strdup() void button_cb(Fl_Widget *w, void*); @@ -76,7 +75,8 @@ public: } else { // Create the light buttons sprintf(s, "%d/%d ", r, c); - Fl_Light_Button *butt = new Fl_Light_Button(X,Y,W,H,fl_strdup(s)); + Fl_Light_Button *butt = new Fl_Light_Button(X,Y,W,H); + butt->copy_label(s); butt->align(FL_ALIGN_CENTER|FL_ALIGN_INSIDE); butt->callback(button_cb, (void*)0); butt->value( ((r+c*2) & 4 ) ? 1 : 0); |
