summaryrefslogtreecommitdiff
path: root/FL/Fl_Box.H
diff options
context:
space:
mode:
authormaxim nikonov <maxim.nikonov@hqo.co>2026-02-05 16:24:45 +0500
committermaxim nikonov <maxim.nikonov@hqo.co>2026-02-05 16:24:45 +0500
commitcdf2832347b8fdf0389cd373c2ead0ac5d071037 (patch)
tree96f9771aed0710899aa6cbba2a84dadfe76e996e /FL/Fl_Box.H
parentdb214d1145e46d527a46d1fc2519548d2c4d23f1 (diff)
wip
Diffstat (limited to 'FL/Fl_Box.H')
-rw-r--r--FL/Fl_Box.H6
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