From 44997466fb1cbca3676f175d336f7f20c922e16a Mon Sep 17 00:00:00 2001 From: Scott Talbert Date: Mon, 20 Dec 2021 15:11:01 -0500 Subject: [PATCH] Undocument SetClippingRegion overload in wxSVGFileDC Documentation of the other overloads was removed in 6a442d2 and there is nothing special about the wxCoord variant in wxSVGFileDC, so remove it so all the overloads are consistently documented in just wxDC. Closes https://github.com/wxWidgets/wxWidgets/pull/2627 --- interface/wx/dcsvg.h | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/interface/wx/dcsvg.h b/interface/wx/dcsvg.h index bc6355139d..f3abc4dd5f 100644 --- a/interface/wx/dcsvg.h +++ b/interface/wx/dcsvg.h @@ -102,17 +102,6 @@ public: */ void SetShapeRenderingMode(wxSVGShapeRenderingMode renderingMode); - /** - Sets the clipping region for this device context to the intersection of - the given region described by the parameters of this method and the previously - set clipping region. - Clipping is implemented in the SVG output using SVG group elements (\), with - nested group elements being used to represent clipping region intersections when - two or more calls are made to SetClippingRegion(). - */ - void SetClippingRegion(wxCoord x, wxCoord y, wxCoord width, - wxCoord height); - /** Destroys the current clipping region so that none of the DC is clipped. Since intersections arising from sequential calls to SetClippingRegion are represented