From 9575eb0a1ffa8150f70f88b5f6b55f342c3c0088 Mon Sep 17 00:00:00 2001 From: maxim nikonov Date: Fri, 6 Feb 2026 13:41:26 +0500 Subject: wip --- fluid/widgets/Bin_Button.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fluid/widgets/Bin_Button.h') 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) { } }; -- cgit v1.2.3