diff options
Diffstat (limited to 'src/Fl_Counter.cxx')
| -rw-r--r-- | src/Fl_Counter.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Fl_Counter.cxx b/src/Fl_Counter.cxx index a2661e8a3..f27743df3 100644 --- a/src/Fl_Counter.cxx +++ b/src/Fl_Counter.cxx @@ -18,6 +18,7 @@ #include <FL/Fl.H> #include <FL/Fl_Counter.H> +#include <FL/Fl_Simple_Counter.H> #include <FL/fl_draw.H> void Fl_Counter::draw() { @@ -197,6 +198,13 @@ Fl_Counter::Fl_Counter(int X, int Y, int W, int H, const char* L) textcolor_ = FL_FOREGROUND_COLOR; } + +Fl_Simple_Counter::Fl_Simple_Counter(int X,int Y,int W,int H, const char *L) +: Fl_Counter(X,Y,W,H,L) { + type(FL_SIMPLE_COUNTER); +} + + // // End of "$Id$". // |
