summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/gdimetafiletools.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-12-05 13:59:20 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-12-06 05:31:18 +0000
commit70f05aa69acca911298201b8a61e3312ec1ab30e (patch)
treeb9ad6ff8795f3464701c3a643dc0367a804fbbf9 /vcl/source/gdi/gdimetafiletools.cxx
parentae923f941f70ebe99cc785076f3357015dd69003 (diff)
convert PolyStyle to scoped enum
Change-Id: Ia35fdbb5e40888db9558988ac069741b31721f0e Reviewed-on: https://gerrit.libreoffice.org/31633 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/source/gdi/gdimetafiletools.cxx')
-rw-r--r--vcl/source/gdi/gdimetafiletools.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/gdi/gdimetafiletools.cxx b/vcl/source/gdi/gdimetafiletools.cxx
index 877ca9a302f1..372a1094028a 100644
--- a/vcl/source/gdi/gdimetafiletools.cxx
+++ b/vcl/source/gdi/gdimetafiletools.cxx
@@ -603,7 +603,7 @@ void clipMetafileContentAgainstOwnRegions(GDIMetaFile& rSource)
rRect,
pA->GetStartPoint(),
pA->GetEndPoint(),
- POLY_ARC);
+ PolyStyle::Arc);
bDone = handleGeometricContent(
aClips.back(),
@@ -629,7 +629,7 @@ void clipMetafileContentAgainstOwnRegions(GDIMetaFile& rSource)
rRect,
pA->GetStartPoint(),
pA->GetEndPoint(),
- POLY_PIE);
+ PolyStyle::Pie);
bDone = handleGeometricContent(
aClips.back(),
@@ -655,7 +655,7 @@ void clipMetafileContentAgainstOwnRegions(GDIMetaFile& rSource)
rRect,
pA->GetStartPoint(),
pA->GetEndPoint(),
- POLY_CHORD);
+ PolyStyle::Chord);
bDone = handleGeometricContent(
aClips.back(),