diff options
author | Kurt Zenker <kz@openoffice.org> | 2005-11-02 12:38:25 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2005-11-02 12:38:25 +0000 |
commit | 08601e9bfaf5cc6ba13d49d0b2079099f6eb47fd (patch) | |
tree | 6fbf03d13426dfe3490c953110aaed2572f6f3d8 | |
parent | 579c95fb426921697b477ce0849196cec8fc8fa6 (diff) |
INTEGRATION: CWS canvas02 (1.6.4); FILE MERGED
2005/10/09 09:07:55 thb 1.6.4.2: RESYNC: (1.6-1.7); FILE MERGED
2005/08/19 11:06:08 thb 1.6.4.1: #i53538# Changed clip setting to use basegfx polygon (cppcanvas::PolyPolygon contains reference back to canvas)
-rw-r--r-- | cppcanvas/inc/cppcanvas/canvas.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cppcanvas/inc/cppcanvas/canvas.hxx b/cppcanvas/inc/cppcanvas/canvas.hxx index 55f88fbcf0b9..bb48bbb1ac24 100644 --- a/cppcanvas/inc/cppcanvas/canvas.hxx +++ b/cppcanvas/inc/cppcanvas/canvas.hxx @@ -4,9 +4,9 @@ * * $RCSfile: canvas.hxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: rt $ $Date: 2005-09-08 08:12:56 $ + * last change: $Author: kz $ $Date: 2005-11-02 13:38:25 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -105,8 +105,8 @@ namespace cppcanvas virtual void setTransformation( const ::basegfx::B2DHomMatrix& rMatrix ) = 0; virtual ::basegfx::B2DHomMatrix getTransformation() const = 0; - virtual void setClip( const PolyPolygonSharedPtr& rClipPoly ) = 0; - virtual PolyPolygonSharedPtr getClip() const = 0; + virtual void setClip( const ::basegfx::B2DPolyPolygon& rClipPoly ) = 0; + virtual ::basegfx::B2DPolyPolygon getClip() const = 0; virtual FontSharedPtr createFont( const ::rtl::OUString& rFontName, const double& rCellSize ) const = 0; |