summaryrefslogtreecommitdiff
path: root/basegfx/source/polygon/b2dlinegeometry.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-17 16:15:23 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-07-20 06:35:21 +0000
commit852ae6dea4156955444dc469943dd1bbd446d452 (patch)
tree7969808f133e1de40a56ff8a9526753e8a0a899c /basegfx/source/polygon/b2dlinegeometry.cxx
parent7410217b7d84a3e4dfd35529384f190cf2962024 (diff)
com::sun::star->css in basegfx
Change-Id: I27f28e6a09e8bc9e90f0b60a7ac8519b2ab41860 Reviewed-on: https://gerrit.libreoffice.org/17166 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
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
{