summaryrefslogtreecommitdiff
path: root/fluid/widgets/Bin_Button.h
diff options
context:
space:
mode:
Diffstat (limited to 'fluid/widgets/Bin_Button.h')
-rw-r--r--fluid/widgets/Bin_Button.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fluid/widgets/Bin_Button.h b/fluid/widgets/Bin_Button.h
index e04228c82..aac415ff8 100644
--- a/fluid/widgets/Bin_Button.h
+++ b/fluid/widgets/Bin_Button.h
@@ -25,7 +25,7 @@ namespace widget {
// Adding drag and drop for dragging widgets into windows.
class Bin_Button : public Fl_Button {
public:
- int handle(int) override;
+ int handle(int);
Bin_Button(int X,int Y,int W,int H, const char* l = 0) :
Fl_Button(X,Y,W,H,l) { }
};
@@ -33,7 +33,7 @@ public:
// Adding drag and drop functionality to drag window prototypes onto the desktop.
class Bin_Window_Button : public Fl_Button {
public:
- int handle(int) override;
+ int handle(int);
Bin_Window_Button(int X,int Y,int W,int H, const char* l = 0) :
Fl_Button(X,Y,W,H,l) { }
};