summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdpoev.cxx
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2015-08-16 16:45:12 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2015-08-17 02:07:43 +0000
commitef46917ff3163d3fdd5152bda5d16c4503b6ab69 (patch)
tree73271cd339b19964bc91157207565595774e98b5 /svx/source/svdraw/svdpoev.cxx
parent2ce903c7b2d67a46c2fe2755cfaa66d98f2eddf2 (diff)
Put Polygon from tools under tools:: namespace
Polygon is one of these names that Clash with some system objects A similar work has been done earlier with PolyPolygon. Change-Id: Icf2217cb2906292b7275760f1a16be0e150312f5 Reviewed-on: https://gerrit.libreoffice.org/17789 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'svx/source/svdraw/svdpoev.cxx')
-rw-r--r--svx/source/svdraw/svdpoev.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdpoev.cxx b/svx/source/svdraw/svdpoev.cxx
index 36bc0c163abe..fd65cfccb3e7 100644
--- a/svx/source/svdraw/svdpoev.cxx
+++ b/svx/source/svdraw/svdpoev.cxx
@@ -447,7 +447,7 @@ bool SdrPolyEditView::IsRipUpAtMarkedPointsPossible() const
{
// #i76617# Do not yet use basegfx::B2DPolygon since curve definitions
// are different and methods need to be changed thoroughly with interaction rework
- const Polygon aPathPolygon(rPathPolyPolygon.getB2DPolygon(0));
+ const tools::Polygon aPathPolygon(rPathPolyPolygon.getB2DPolygon(0));
const sal_uInt16 nPointCount(aPathPolygon.GetSize());
if(nPointCount >= 3)
@@ -489,7 +489,7 @@ bool SdrPolyEditView::IsOpenCloseMarkedObjectsPossible() const
for(sal_uInt16 b(0); !bRetval && b < nPolygonCount; b++)
{
- const Polygon& rPathPolygon = aPathPolyPolygon[b];
+ const tools::Polygon& rPathPolygon = aPathPolyPolygon[b];
const sal_uInt16 nPointCount(rPathPolygon.GetSize());
bRetval = (nPointCount >= 3);