diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-07-30 22:03:39 +0100 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-07-31 09:58:28 +0200 |
commit | 74963f654768d6f25ac1ea907736731d9a886853 (patch) | |
tree | f40fdbbf757c9349746ba373147a07ed141ce0b6 /vcl/inc/salgdi.hxx | |
parent | ff55268583324c7c62c6c0988384a9f0f2d18d8b (diff) |
all drawPolyPolygon variants return true now
since:
commit 4998de76ed1da4039e30718941d50d6f1dfe4f82
Date: Sun Jul 30 07:40:48 2023 +0000
tdf#156230: Drop freshly unused GenPspGfxBackend
Change-Id: I7fc2a068f807777ed392c5d58772d130bf7f51c8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155076
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'vcl/inc/salgdi.hxx')
-rw-r--r-- | vcl/inc/salgdi.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/inc/salgdi.hxx b/vcl/inc/salgdi.hxx index debdd34bb00f..b4536cc3ee3c 100644 --- a/vcl/inc/salgdi.hxx +++ b/vcl/inc/salgdi.hxx @@ -203,7 +203,7 @@ public: const Point** pPtAry, const OutputDevice& rOutDev ); - bool DrawPolyPolygon( + void DrawPolyPolygon( const basegfx::B2DHomMatrix& rObjectToDevice, const basegfx::B2DPolyPolygon &i_rPolyPolygon, double i_fTransparency, @@ -442,7 +442,7 @@ protected: virtual void drawPolyPolygon( sal_uInt32 nPoly, const sal_uInt32* pPoints, const Point** pPtAry ) = 0; - virtual bool drawPolyPolygon( + virtual void drawPolyPolygon( const basegfx::B2DHomMatrix& rObjectToDevice, const basegfx::B2DPolyPolygon&, double fTransparency) = 0; @@ -736,12 +736,12 @@ public: GetImpl()->drawPolyPolygon (nPoly, pPoints, pPtAry); } - bool drawPolyPolygon( + void drawPolyPolygon( const basegfx::B2DHomMatrix& rObjectToDevice, const basegfx::B2DPolyPolygon& rPolyPolygon, double fTransparency) override { - return GetImpl()->drawPolyPolygon(rObjectToDevice, rPolyPolygon, fTransparency); + GetImpl()->drawPolyPolygon(rObjectToDevice, rPolyPolygon, fTransparency); } bool drawPolyLine( |