summaryrefslogtreecommitdiffstats
path: root/include/vcl/canvastools.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/canvastools.hxx')
-rw-r--r--include/vcl/canvastools.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/vcl/canvastools.hxx b/include/vcl/canvastools.hxx
index aedcff7a2227..e2abfb32bbe1 100644
--- a/include/vcl/canvastools.hxx
+++ b/include/vcl/canvastools.hxx
@@ -30,7 +30,7 @@
class Point;
class Size;
-class Rectangle;
+namespace tools { class Rectangle; }
namespace tools {
class Polygon;
class PolyPolygon;
@@ -152,22 +152,22 @@ namespace vcl
Size VCL_DLLPUBLIC sizeFromIntegerSize2D( const css::geometry::IntegerSize2D& );
Point VCL_DLLPUBLIC pointFromIntegerPoint2D( const css::geometry::IntegerPoint2D& );
- Rectangle VCL_DLLPUBLIC rectangleFromIntegerRectangle2D( const css::geometry::IntegerRectangle2D& );
+ tools::Rectangle VCL_DLLPUBLIC rectangleFromIntegerRectangle2D( const css::geometry::IntegerRectangle2D& );
// basegfx::B2D
Size VCL_DLLPUBLIC sizeFromB2DSize( const basegfx::B2DVector& );
Point VCL_DLLPUBLIC pointFromB2DPoint( const basegfx::B2DPoint& );
- Rectangle VCL_DLLPUBLIC rectangleFromB2DRectangle( const basegfx::B2DRange& );
+ tools::Rectangle VCL_DLLPUBLIC rectangleFromB2DRectangle( const basegfx::B2DRange& );
basegfx::B2DVector VCL_DLLPUBLIC b2DSizeFromSize( const Size& );
basegfx::B2DPoint VCL_DLLPUBLIC b2DPointFromPoint( const Point& );
- basegfx::B2DRange VCL_DLLPUBLIC b2DRectangleFromRectangle( const Rectangle& );
+ basegfx::B2DRange VCL_DLLPUBLIC b2DRectangleFromRectangle( const tools::Rectangle& );
// basegfx::B2I
Point VCL_DLLPUBLIC pointFromB2IPoint( const basegfx::B2IPoint& );
- Rectangle VCL_DLLPUBLIC rectangleFromB2IRectangle( const basegfx::B2IRange& );
+ tools::Rectangle VCL_DLLPUBLIC rectangleFromB2IRectangle( const basegfx::B2IRange& );
basegfx::B2IPoint VCL_DLLPUBLIC b2IPointFromPoint(const Point&);
- basegfx::B2IRectangle VCL_DLLPUBLIC b2IRectangleFromRectangle(const Rectangle&);
+ basegfx::B2IRectangle VCL_DLLPUBLIC b2IRectangleFromRectangle(const tools::Rectangle&);
}
}