diff options
| author | maxim nikonov <maxim.nikonov@hqo.co> | 2026-02-06 02:33:41 +0500 |
|---|---|---|
| committer | maxim nikonov <maxim.nikonov@hqo.co> | 2026-02-06 02:33:41 +0500 |
| commit | 43e0a37906afabb0b3b091b8d3eac9a910cae50c (patch) | |
| tree | d2a037c2bf0dc395fddb08e32ebfcf2795503b7c /fluid/widgets/Bin_Button.h | |
| parent | 4ce4967c33d56e4b56d85d11fe0e0be91e159f5d (diff) | |
wip
Diffstat (limited to 'fluid/widgets/Bin_Button.h')
| -rw-r--r-- | fluid/widgets/Bin_Button.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fluid/widgets/Bin_Button.h b/fluid/widgets/Bin_Button.h index 342fe0eac..e04228c82 100644 --- a/fluid/widgets/Bin_Button.h +++ b/fluid/widgets/Bin_Button.h @@ -26,7 +26,7 @@ namespace widget { class Bin_Button : public Fl_Button { public: int handle(int) override; - Bin_Button(int X,int Y,int W,int H, const char* l = nullptr) : + Bin_Button(int X,int Y,int W,int H, const char* l = 0) : Fl_Button(X,Y,W,H,l) { } }; @@ -34,7 +34,7 @@ public: class Bin_Window_Button : public Fl_Button { public: int handle(int) override; - Bin_Window_Button(int X,int Y,int W,int H, const char* l = nullptr) : + Bin_Window_Button(int X,int Y,int W,int H, const char* l = 0) : Fl_Button(X,Y,W,H,l) { } }; |
