summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-02-09 14:50:09 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-02-10 08:08:45 +0200
commit486d636a4d614e420980487209e53e6891f493b5 (patch)
tree9158ee1c9b19df009efd7c536a6ae70e631ff8ee /tools
parentremove unused enumerators from FTPErrors enum (diff)
downloadcore-486d636a4d614e420980487209e53e6891f493b5.tar.gz
core-486d636a4d614e420980487209e53e6891f493b5.zip
remove unused enumerators from PolyClipOp
Change-Id: I0988ebbbc5fe394eaa6fead0d2f909d4a931856c
Diffstat (limited to 'tools')
-rw-r--r--tools/source/generic/poly2.cxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/tools/source/generic/poly2.cxx b/tools/source/generic/poly2.cxx
index df7c51545d92..144fe9a4e00e 100644
--- a/tools/source/generic/poly2.cxx
+++ b/tools/source/generic/poly2.cxx
@@ -339,20 +339,6 @@ void PolyPolygon::ImplDoOperation( const tools::PolyPolygon& rPolyPoly, tools::P
break;
}
- case PolyClipOp::DIFF:
- {
- // subtract B from A (DIFF)
- aMergePolyPolygonA = basegfx::tools::solvePolygonOperationDiff(aMergePolyPolygonA, aMergePolyPolygonB);
- break;
- }
-
- case PolyClipOp::XOR:
- {
- // compute XOR between poly A and B
- aMergePolyPolygonA = basegfx::tools::solvePolygonOperationXor(aMergePolyPolygonA, aMergePolyPolygonB);
- break;
- }
-
default:
case PolyClipOp::INTERSECT:
{