summaryrefslogtreecommitdiff
path: root/FL/fl_draw.H
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2025-07-02 16:16:48 +0200
committerAlbrecht Schlosser <albrechts.fltk@online.de>2025-07-02 17:19:52 +0200
commita05ae33e20b09ab952ddbbf6762d5cfec77e4943 (patch)
treed56c63638917b24e3a35b7ca21dfbbe589c6f234 /FL/fl_draw.H
parent9a5bdf40a475519ff7b80a9cc51452966e8325e2 (diff)
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.
Diffstat (limited to 'FL/fl_draw.H')
-rw-r--r--FL/fl_draw.H11
1 files changed, 0 insertions, 11 deletions
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
@@ -89,17 +89,6 @@ 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.
*/
inline void fl_push_no_clip() {