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_Tile.H | |
| parent | db214d1145e46d527a46d1fc2519548d2c4d23f1 (diff) | |
wip
Diffstat (limited to 'FL/Fl_Tile.H')
| -rw-r--r-- | FL/Fl_Tile.H | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/FL/Fl_Tile.H b/FL/Fl_Tile.H index aecb382ba..70cc0dbd4 100644 --- a/FL/Fl_Tile.H +++ b/FL/Fl_Tile.H @@ -26,10 +26,10 @@ class FL_EXPORT Fl_Tile : public Fl_Group { public: - int handle(int event) override; + int handle(int event); Fl_Tile(int X, int Y, int W, int H, const char *L=0); - ~Fl_Tile() override; - void resize(int X, int Y, int W, int H) override; + ~Fl_Tile(); + void resize(int X, int Y, int W, int H); virtual void move_intersection(int oldx, int oldy, int newx, int newy); virtual void drag_intersection(int oldx, int oldy, int newx, int newy); FL_DEPRECATED("since 1.4.0 - use move_intersection(p) instead", @@ -67,9 +67,9 @@ protected: void request_grow_t(int old_t, int &new_t, Fl_Rect *final_size); void request_grow_b(int old_b, int &new_b, Fl_Rect *final_size); - int on_insert(Fl_Widget*, int) override; - int on_move(int, int) override; - void on_remove(int) override; + int on_insert(Fl_Widget*, int); + int on_move(int, int); + void on_remove(int); }; #endif |
