summaryrefslogtreecommitdiff
path: root/vcl/unx/source/gdi/pspgraphics.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-05-30 09:11:39 +0000
committerOliver Bolte <obo@openoffice.org>2008-05-30 09:11:39 +0000
commit15e41a2a2802451f9fa09b104ae31ea6888390f6 (patch)
tree2cbef5c49229a9f66923a767d4770eb8100d80fa /vcl/unx/source/gdi/pspgraphics.cxx
parentba3e47385552b91f99b1e7444071a8466a8bce9d (diff)
INTEGRATION: CWS aquabmpfix01 (1.29.26); FILE MERGED
2008/05/13 14:03:26 hdu 1.29.26.1: #100000# remove compile warnings
Diffstat (limited to 'vcl/unx/source/gdi/pspgraphics.cxx')
-rw-r--r--vcl/unx/source/gdi/pspgraphics.cxx20
1 files changed, 19 insertions, 1 deletions
diff --git a/vcl/unx/source/gdi/pspgraphics.cxx b/vcl/unx/source/gdi/pspgraphics.cxx
index 10e78ec09b5a..c66678618cd8 100644
--- a/vcl/unx/source/gdi/pspgraphics.cxx
+++ b/vcl/unx/source/gdi/pspgraphics.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: pspgraphics.cxx,v $
- * $Revision: 1.29 $
+ * $Revision: 1.30 $
*
* This file is part of OpenOffice.org.
*
@@ -304,6 +304,12 @@ BOOL PspGraphics::unionClipRegion( long nX, long nY, long nDX, long nDY )
return (BOOL)m_pPrinterGfx->UnionClipRegion (nX, nY, nDX, nDY);
}
+bool PspGraphics::unionClipRegion( const ::basegfx::B2DPolyPolygon& )
+{
+ // TODO: implement and advertise OutDevSupport_B2DClip support
+ return false;
+}
+
void PspGraphics::EndSetClipRegion()
{
m_pPrinterGfx->EndSetClipRegion ();
@@ -395,6 +401,18 @@ void PspGraphics::drawPolyPolygon( sal_uInt32 nPoly,
m_pPrinterGfx->DrawPolyPolygon (nPoly, pPoints, (const Point**)pPtAry);
}
+bool PspGraphics::drawPolyPolygon( const ::basegfx::B2DPolyPolygon&, double /*fTransparency*/ )
+{
+ // TODO: implement and advertise OutDevSupport_B2DDraw support
+ return false;
+}
+
+bool PspGraphics::drawPolyLine( const ::basegfx::B2DPolygon&, const ::basegfx::B2DVector& /*rLineWidths*/ )
+{
+ // TODO: implement and advertise OutDevSupport_B2DDraw support
+ return false;
+}
+
sal_Bool PspGraphics::drawPolyLineBezier( ULONG nPoints, const SalPoint* pPtAry, const BYTE* pFlgAry )
{
m_pPrinterGfx->DrawPolyLineBezier (nPoints, (Point*)pPtAry, pFlgAry);