diff options
| author | maxim nikonov <maxim.nikonov@hqo.co> | 2026-02-06 13:41:26 +0500 |
|---|---|---|
| committer | maxim nikonov <maxim.nikonov@hqo.co> | 2026-02-06 13:41:26 +0500 |
| commit | 9575eb0a1ffa8150f70f88b5f6b55f342c3c0088 (patch) | |
| tree | 37f4d24696b03ab80b11c9d31b2c562be2e03ee3 /fluid/nodes/Window_Node.cxx | |
| parent | 260dc2c8828c70b0e147ea394f38e9ee6dc69ee3 (diff) | |
wip
Diffstat (limited to 'fluid/nodes/Window_Node.cxx')
| -rw-r--r-- | fluid/nodes/Window_Node.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fluid/nodes/Window_Node.cxx b/fluid/nodes/Window_Node.cxx index 2bcd9f1b1..9a53d2ecb 100644 --- a/fluid/nodes/Window_Node.cxx +++ b/fluid/nodes/Window_Node.cxx @@ -125,17 +125,17 @@ static int overlays_invisible; // an overlay for the fluid ui, and special-cases the FL_NO_BOX. class Overlay_Window : public Fl_Overlay_Window { - void draw() override; - void draw_overlay() override; + void draw(); + void draw_overlay(); static void close_cb(Overlay_Window *self, void*); public: Window_Node *window; - int handle(int) override; + int handle(int); Overlay_Window(int W,int H) : Fl_Overlay_Window(W,H) { Fl_Group::current(0); callback((Fl_Callback*)close_cb); } - void resize(int,int,int,int) override; + void resize(int,int,int,int); uchar *read_image(int &ww, int &hh); }; |
