summaryrefslogtreecommitdiff
path: root/src/Fl_Box.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/Fl_Box.cxx')
-rw-r--r--src/Fl_Box.cxx12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Fl_Box.cxx b/src/Fl_Box.cxx
index a6d3d63c3..1dbc40468 100644
--- a/src/Fl_Box.cxx
+++ b/src/Fl_Box.cxx
@@ -19,6 +19,18 @@
#include <FL/Fl_Widget.H>
#include <FL/Fl_Box.H>
+
+Fl_Box::Fl_Box(int X, int Y, int W, int H, const char *l)
+: Fl_Widget(X,Y,W,H,l)
+{
+}
+
+Fl_Box::Fl_Box(Fl_Boxtype b, int X, int Y, int W, int H, const char *l)
+: Fl_Widget(X,Y,W,H,l)
+{
+ box(b);
+}
+
void Fl_Box::draw() {
draw_box();
draw_label();