From a05ae33e20b09ab952ddbbf6762d5cfec77e4943 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Wed, 2 Jul 2025 16:16:48 +0200 Subject: Remove deprecated methods and functions In FLTK 1.5 we remove most (but not all) methods and functions that were deprecated in FLTK 1.3 or earlier. --- FL/fl_draw.H | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'FL/fl_draw.H') diff --git a/FL/fl_draw.H b/FL/fl_draw.H index 89292b7f8..00e4f1e2d 100644 --- a/FL/fl_draw.H +++ b/FL/fl_draw.H @@ -88,17 +88,6 @@ inline Fl_Color fl_color() { inline void fl_push_clip(int x, int y, int w, int h) { fl_graphics_driver->push_clip(x, y, w, h); } -/** - Intersect the current clip region with a rectangle and push this - new region onto the stack (deprecated). - \param[in] x,y,w,h position and size - \deprecated - Please use fl_push_clip(int x, int y, int w, int h) instead. - fl_clip(int, int, int, int) will be removed in FLTK 1.5. -*/ -inline void fl_clip(int x, int y, int w, int h) { - fl_graphics_driver->push_clip(x, y, w, h); -} /** Push an empty clip region onto the stack so nothing will be clipped. */ -- cgit v1.2.3