summaryrefslogtreecommitdiff
path: root/basegfx/source/polygon/b2dlinegeometry.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx/source/polygon/b2dlinegeometry.cxx')
-rw-r--r--basegfx/source/polygon/b2dlinegeometry.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/basegfx/source/polygon/b2dlinegeometry.cxx b/basegfx/source/polygon/b2dlinegeometry.cxx
index 4cccf1df5bf1..c259fef49504 100644
--- a/basegfx/source/polygon/b2dlinegeometry.cxx
+++ b/basegfx/source/polygon/b2dlinegeometry.cxx
@@ -783,7 +783,7 @@ namespace basegfx
const B2DPolygon& rCandidate,
double fHalfLineWidth,
B2DLineJoin eJoin,
- com::sun::star::drawing::LineCap eCap,
+ css::drawing::LineCap eCap,
double fMaxAllowedAngle,
double fMaxPartOfEdge,
double fMiterMinimumAngle)
@@ -828,7 +828,7 @@ namespace basegfx
B2DPolyPolygon aRetval;
const bool bIsClosed(aCandidate.isClosed());
const sal_uInt32 nEdgeCount(bIsClosed ? nPointCount : nPointCount - 1);
- const bool bLineCap(!bIsClosed && com::sun::star::drawing::LineCap_BUTT != eCap);
+ const bool bLineCap(!bIsClosed && css::drawing::LineCap_BUTT != eCap);
if(nEdgeCount)
{
@@ -926,10 +926,10 @@ namespace basegfx
createAreaGeometryForEdge(
aEdge,
fHalfLineWidth,
- bFirst && com::sun::star::drawing::LineCap_ROUND == eCap,
- bLast && com::sun::star::drawing::LineCap_ROUND == eCap,
- bFirst && com::sun::star::drawing::LineCap_SQUARE == eCap,
- bLast && com::sun::star::drawing::LineCap_SQUARE == eCap));
+ bFirst && css::drawing::LineCap_ROUND == eCap,
+ bLast && css::drawing::LineCap_ROUND == eCap,
+ bFirst && css::drawing::LineCap_SQUARE == eCap,
+ bLast && css::drawing::LineCap_SQUARE == eCap));
}
else
{