summaryrefslogtreecommitdiff
path: root/include/svx
diff options
context:
space:
mode:
authorRegina Henschel <rb.henschel@t-online.de>2017-01-29 01:03:16 +0100
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2017-04-06 23:14:24 +0000
commitc10aaf94a9054e48ddd1112c84876eecd3dec726 (patch)
treef01677bb579ba00e12a454e26c0cf9a05cfde665 /include/svx
parent7a64ad57036234c90dda0ba1fefdf8867114305e (diff)
tdf#105545 Allow closed paths having 2 points
Closed paths with 2 points can be created from scratch, therefore allow them too, if a point is deleted. Remove now unused member mbIsClosed Change-Id: Iac2a08df52f734c99c6ac14d9f1a16d8b943d399 Reviewed-on: https://gerrit.libreoffice.org/33654 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'include/svx')
-rw-r--r--include/svx/polypolygoneditor.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/svx/polypolygoneditor.hxx b/include/svx/polypolygoneditor.hxx
index a65200fd3ad2..c5b079d707c8 100644
--- a/include/svx/polypolygoneditor.hxx
+++ b/include/svx/polypolygoneditor.hxx
@@ -34,7 +34,7 @@ namespace sdr
class SVX_DLLPUBLIC PolyPolygonEditor
{
public:
- PolyPolygonEditor( const basegfx::B2DPolyPolygon& rPolyPolygon, bool bClosed );
+ PolyPolygonEditor( const basegfx::B2DPolyPolygon& rPolyPolygon);
const basegfx::B2DPolyPolygon& GetPolyPolygon() const { return maPolyPolygon; }
@@ -58,7 +58,6 @@ public:
private:
basegfx::B2DPolyPolygon maPolyPolygon;
- bool mbIsClosed;
};
}