summaryrefslogtreecommitdiff
path: root/vcl/inc/salgdi.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolan.mcnamara@collabora.com>2023-07-30 22:03:39 +0100
committerCaolán McNamara <caolan.mcnamara@collabora.com>2023-07-31 09:58:28 +0200
commit74963f654768d6f25ac1ea907736731d9a886853 (patch)
treef40fdbbf757c9349746ba373147a07ed141ce0b6 /vcl/inc/salgdi.hxx
parentff55268583324c7c62c6c0988384a9f0f2d18d8b (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.hxx8
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(