diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-03-16 11:56:23 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-03-16 11:56:23 +0000 |
commit | 3464dd3070f0f9525e7912d09a8255430adab725 (patch) | |
tree | 18a4bc2b352e65c0ebbfd1eadf08bd6ea4cda57b | |
parent | 0fa0069218d88f69d72eddbf27e690c59822450a (diff) |
INTEGRATION: CWS sixtyfour02 (1.20.130); FILE MERGED
2006/02/22 10:06:29 cmc 1.20.130.1: #i62389# make Polygon drawing signatures consistent with those of psprint
-rw-r--r-- | vcl/source/gdi/salgdilayout.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/gdi/salgdilayout.cxx b/vcl/source/gdi/salgdilayout.cxx index b726ece94c65..727d9189a1f2 100644 --- a/vcl/source/gdi/salgdilayout.cxx +++ b/vcl/source/gdi/salgdilayout.cxx @@ -4,9 +4,9 @@ * * $RCSfile: salgdilayout.cxx,v $ * - * $Revision: 1.20 $ + * $Revision: 1.21 $ * - * last change: $Author: kz $ $Date: 2005-11-01 10:33:15 $ + * last change: $Author: vg $ $Date: 2006-03-16 12:56:23 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -323,7 +323,7 @@ void SalGraphics::DrawPolygon( ULONG nPoints, const SalPoint* pPtAry, const O else drawPolygon( nPoints, pPtAry ); } -void SalGraphics::DrawPolyPolygon( ULONG nPoly, const ULONG* pPoints, PCONSTSALPOINT* pPtAry, const OutputDevice *pOutDev ) +void SalGraphics::DrawPolyPolygon( sal_uInt32 nPoly, const sal_uInt32* pPoints, PCONSTSALPOINT* pPtAry, const OutputDevice *pOutDev ) { if( (m_nLayout & SAL_LAYOUT_BIDI_RTL) ) { @@ -356,7 +356,7 @@ sal_Bool SalGraphics::DrawPolygonBezier( ULONG nPoints, const SalPoint* pPtAry, DBG_ASSERT( !(m_nLayout & SAL_LAYOUT_BIDI_RTL), "DrawPolygonBezier - no mirroring implemented"); return drawPolygonBezier( nPoints, pPtAry, pFlgAry ); } -sal_Bool SalGraphics::DrawPolyPolygonBezier( ULONG nPoly, const ULONG* pPoints, +sal_Bool SalGraphics::DrawPolyPolygonBezier( sal_uInt32 nPoly, const sal_uInt32* pPoints, const SalPoint* const* pPtAry, const BYTE* const* pFlgAry, const OutputDevice *pOutDev ) { DBG_ASSERT( !(m_nLayout & SAL_LAYOUT_BIDI_RTL), "DrawPolyPolygonBezier - no mirroring implemented"); |