diff options
Diffstat (limited to 'FL/Fl_Box.H')
| -rw-r--r-- | FL/Fl_Box.H | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FL/Fl_Box.H b/FL/Fl_Box.H index 1023e7d77..d8db91fda 100644 --- a/FL/Fl_Box.H +++ b/FL/Fl_Box.H @@ -33,7 +33,7 @@ */ class FL_EXPORT Fl_Box : public Fl_Widget { protected: - void draw() override; + void draw(); public: /** Creates a new Fl_Box widget with the given coordinates, size, and label. @@ -58,7 +58,7 @@ public: This constructor sets box() to the given Fl_Boxtype \c B. - You must also specify a label but it can be \c nullptr (0, NULL) if you + You must also specify a label but it can be \c 0 (0, NULL) if you don't want or need a visible label. The destructor removes the box from its parent group. @@ -72,7 +72,7 @@ public: */ Fl_Box(Fl_Boxtype B, int X, int Y, int W, int H, const char *L); - int handle(int) override; + int handle(int); }; #endif |
