summaryrefslogtreecommitdiff
path: root/fluid/widgets/Bin_Button.h
diff options
context:
space:
mode:
authormaxim nikonov <maxim.nikonov@hqo.co>2026-02-06 13:41:26 +0500
committermaxim nikonov <maxim.nikonov@hqo.co>2026-02-06 13:41:26 +0500
commit9575eb0a1ffa8150f70f88b5f6b55f342c3c0088 (patch)
tree37f4d24696b03ab80b11c9d31b2c562be2e03ee3 /fluid/widgets/Bin_Button.h
parent260dc2c8828c70b0e147ea394f38e9ee6dc69ee3 (diff)
wip
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) { }
};