summaryrefslogtreecommitdiff
path: root/basegfx/source/tools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-01-17 09:00:04 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-01-17 11:33:16 +0000
commitbcc25a6d8ab411fe62f935cbb302eb1924274ae8 (patch)
tree2e959c77886cb74f772aff0eee8ebff64ba521e0 /basegfx/source/tools
parentbd8851e3193692357165bf065de6e9a0b9fd726c (diff)
callcatcher: remove recently unused code
Diffstat (limited to 'basegfx/source/tools')
-rw-r--r--basegfx/source/tools/b2dclipstate.cxx20
1 files changed, 0 insertions, 20 deletions
diff --git a/basegfx/source/tools/b2dclipstate.cxx b/basegfx/source/tools/b2dclipstate.cxx
index 963dd39f6785..9a46e2f5c17c 100644
--- a/basegfx/source/tools/b2dclipstate.cxx
+++ b/basegfx/source/tools/b2dclipstate.cxx
@@ -132,26 +132,6 @@ namespace tools
maPendingPolygons.append(aPoly);
}
- void addClipState(const ImplB2DClipState& rOther, Operation eOp)
- {
- if( rOther.mePendingOps == mePendingOps
- && !rOther.maClipPoly.count()
- && !rOther.maPendingPolygons.count() )
- {
- maPendingRanges.appendPolyRange( rOther.maPendingRanges );
- }
- else
- {
- commitPendingRanges();
- commitPendingPolygons();
- rOther.commitPendingRanges();
- rOther.commitPendingPolygons();
-
- maPendingPolygons = rOther.maClipPoly;
- mePendingOps = eOp;
- }
- }
-
void unionRange(const B2DRange& rRange)
{
if( isCleared() )