diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-10-22 22:08:39 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-10-22 22:30:21 +0200 |
commit | 4853cd4991c4f27d3bbfb8dbbcc5f2c4b84ee6b0 (patch) | |
tree | 196933f93919fd8acbad7b7747d44b2e2f640635 /vcl/unx | |
parent | 93f9f1bfd10560882380970603aa934955598053 (diff) |
vcl: convert some BOOL to sal_uInt8
Change-Id: Ib0d90de832bc8006eaa62b55abb416e2d19b4782
Diffstat (limited to 'vcl/unx')
-rw-r--r-- | vcl/unx/generic/gdi/salgdi.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/unx/generic/gdi/salgdi.cxx b/vcl/unx/generic/gdi/salgdi.cxx index eacd35b477ae..feba94a7ae87 100644 --- a/vcl/unx/generic/gdi/salgdi.cxx +++ b/vcl/unx/generic/gdi/salgdi.cxx @@ -928,18 +928,18 @@ void X11SalGraphics::drawPolyPolygon( sal_uInt32 nPoly, drawPolyLine( pPoints[i], pPtAry[i], true ); } -sal_Bool X11SalGraphics::drawPolyLineBezier( sal_uLong, const SalPoint*, const BYTE* ) +sal_Bool X11SalGraphics::drawPolyLineBezier( sal_uLong, const SalPoint*, const sal_uInt8* ) { return sal_False; } -sal_Bool X11SalGraphics::drawPolygonBezier( sal_uLong, const SalPoint*, const BYTE* ) +sal_Bool X11SalGraphics::drawPolygonBezier( sal_uLong, const SalPoint*, const sal_uInt8* ) { return sal_False; } sal_Bool X11SalGraphics::drawPolyPolygonBezier( sal_uInt32, const sal_uInt32*, - const SalPoint* const*, const BYTE* const* ) + const SalPoint* const*, const sal_uInt8* const* ) { return sal_False; } |