diff options
author | Oliver Bolte <obo@openoffice.org> | 2008-05-30 09:14:50 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2008-05-30 09:14:50 +0000 |
commit | 8e7f8f0326fe6fc4d0563fad051a1ddf079fd74b (patch) | |
tree | d0bb99ffff9d6c1831d82e2919efe244651d17b0 /vcl/win | |
parent | 4d714009cee8e587d5fc9686edf2088129883567 (diff) |
INTEGRATION: CWS aquabmpfix01 (1.33.28); FILE MERGED
2008/05/13 14:03:29 hdu 1.33.28.1: #100000# remove compile warnings
Diffstat (limited to 'vcl/win')
-rw-r--r-- | vcl/win/source/gdi/salgdi.cxx | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/vcl/win/source/gdi/salgdi.cxx b/vcl/win/source/gdi/salgdi.cxx index d16375c86f8b..9f1102580e6d 100644 --- a/vcl/win/source/gdi/salgdi.cxx +++ b/vcl/win/source/gdi/salgdi.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: salgdi.cxx,v $ - * $Revision: 1.33 $ + * $Revision: 1.34 $ * * This file is part of OpenOffice.org. * @@ -938,6 +938,14 @@ BOOL WinSalGraphics::unionClipRegion( long nX, long nY, long nWidth, long nHeigh // ----------------------------------------------------------------------- +bool WinSalGraphics::unionClipRegion( const ::basegfx::B2DPolyPolygon& ) +{ + // TODO: implement and advertise OutDevSupport_B2DClip support + return false; +} + +// ----------------------------------------------------------------------- + void WinSalGraphics::EndSetClipRegion() { // create clip region from ClipRgnData @@ -1418,6 +1426,22 @@ void WinSalGraphics::drawPolyPolygon( sal_uInt32 nPoly, const sal_uInt32* pPoint // ----------------------------------------------------------------------- +bool WinSalGraphics::drawPolyPolygon( const ::basegfx::B2DPolyPolygon&, double /*fTransparency*/ ) +{ + // TODO: implement and advertise OutDevSupport_B2DDraw support + return false; +} + +// ----------------------------------------------------------------------- + +bool WinSalGraphics::drawPolyLine( const ::basegfx::B2DPolygon&, const ::basegfx::B2DVector& /*rLineWidths*/ ) +{ + // TODO: implement and advertise OutDevSupport_B2DDraw support + return false; +} + +// ----------------------------------------------------------------------- + #define SAL_POLY_STACKBUF 32 // ----------------------------------------------------------------------- |