diff options
Diffstat (limited to 'src/Fl_Clock.cxx')
| -rw-r--r-- | src/Fl_Clock.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Fl_Clock.cxx b/src/Fl_Clock.cxx index 946768b65..3926ec1b7 100644 --- a/src/Fl_Clock.cxx +++ b/src/Fl_Clock.cxx @@ -18,6 +18,7 @@ #include <FL/Fl.H> #include <FL/Fl_Clock.H> +#include <FL/Fl_Round_Clock.H> #include <FL/fl_draw.H> #include <math.h> #include <time.h> @@ -204,6 +205,15 @@ Fl_Clock::~Fl_Clock() { Fl::remove_timeout(tick, this); } + +Fl_Round_Clock::Fl_Round_Clock(int X,int Y,int W,int H, const char *L) +: Fl_Clock(X, Y, W, H, L) +{ + type(FL_ROUND_CLOCK); + box(FL_NO_BOX); +} + + // // End of "$Id$". // |
