diff options
| author | maxim nikonov <maxim.nikonov@hqo.co> | 2026-02-05 16:24:45 +0500 |
|---|---|---|
| committer | maxim nikonov <maxim.nikonov@hqo.co> | 2026-02-05 16:24:45 +0500 |
| commit | cdf2832347b8fdf0389cd373c2ead0ac5d071037 (patch) | |
| tree | 96f9771aed0710899aa6cbba2a84dadfe76e996e /FL/Fl_Window.H | |
| parent | db214d1145e46d527a46d1fc2519548d2c4d23f1 (diff) | |
wip
Diffstat (limited to 'FL/Fl_Window.H')
| -rw-r--r-- | FL/Fl_Window.H | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/FL/Fl_Window.H b/FL/Fl_Window.H index d832b1b88..827ca8035 100644 --- a/FL/Fl_Window.H +++ b/FL/Fl_Window.H @@ -97,7 +97,7 @@ protected: /** Stores the last window that was made current. See current() const */ static Fl_Window *current_; - void draw() override; + void draw(); public: @@ -198,7 +198,7 @@ public: */ virtual ~Fl_Window(); - int handle(int) override; + int handle(int); /** Changes the size and position of the window. If shown() is true, @@ -216,7 +216,7 @@ public: dimensions. It is up to the application developer to verify window parameters after the resize request. */ - void resize(int X,int Y,int W,int H) override; + void resize(int X,int Y,int W,int H); /** Sets whether or not the window manager border is around the window. The default value is true. The macOS platform ignores requests to change the border state of a fullscreen or maximized window. @@ -422,12 +422,12 @@ public: \see Fl_Window::show(int argc, char **argv) */ - void show() override; + void show(); /** Removes the window from the screen. If the window is already hidden or has not been shown then this does nothing and is harmless. */ - void hide() override; + void hide(); /** Puts the window on the screen with show() and parses command-line arguments. @@ -560,7 +560,7 @@ public: int decorated_h() const; // Note: Doxygen docs in Fl_Widget.H to avoid redundancy. - Fl_Window* as_window() override { return this; } + Fl_Window* as_window() { return this; } Fl_Window const* as_window() const override { return this; } /** |
