diff options
author | August Sodora <augsod@gmail.com> | 2012-01-07 20:41:09 -0500 |
---|---|---|
committer | August Sodora <augsod@gmail.com> | 2012-01-08 11:48:09 -0500 |
commit | bc2a59e09d1a554b2d55412d1f10a3fa1fe86086 (patch) | |
tree | 0f588df79ace5b37eff26593e78cf17f4071e1fd /basegfx/inc/basegfx/tools | |
parent | dd7eeed27dc225281ad51e3e41be88ce753e4e8e (diff) |
callcatcher: Remove unused code
Diffstat (limited to 'basegfx/inc/basegfx/tools')
-rw-r--r-- | basegfx/inc/basegfx/tools/b2dclipstate.hxx | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/basegfx/inc/basegfx/tools/b2dclipstate.hxx b/basegfx/inc/basegfx/tools/b2dclipstate.hxx index 67d6705bb914..30ab4bdc5fce 100644 --- a/basegfx/inc/basegfx/tools/b2dclipstate.hxx +++ b/basegfx/inc/basegfx/tools/b2dclipstate.hxx @@ -69,21 +69,12 @@ namespace basegfx B2DClipState(); ~B2DClipState(); B2DClipState( const B2DClipState& ); - explicit B2DClipState( const B2DRange& ); - explicit B2DClipState( const B2DPolygon& ); explicit B2DClipState( const B2DPolyPolygon& ); B2DClipState& operator=( const B2DClipState& ); - /// unshare this poly-range with all internally shared instances - void makeUnique(); - /// Set clip to 'null' - nothing is visible void makeNull(); - /// returns true when clip is 'null' - nothing is visible - bool isNull() const; - /// Set clip 'cleared' - everything is visible - void makeClear(); /// returns true when clip is 'cleared' - everything is visible bool isCleared() const; @@ -91,24 +82,16 @@ namespace basegfx bool operator!=(const B2DClipState&) const; void unionRange(const B2DRange& ); - void unionPolygon(const B2DPolygon& ); void unionPolyPolygon(const B2DPolyPolygon& ); - void unionClipState(const B2DClipState& ); void intersectRange(const B2DRange& ); - void intersectPolygon(const B2DPolygon& ); void intersectPolyPolygon(const B2DPolyPolygon& ); - void intersectClipState(const B2DClipState& ); void subtractRange(const B2DRange& ); - void subtractPolygon(const B2DPolygon& ); void subtractPolyPolygon(const B2DPolyPolygon& ); - void subtractClipState(const B2DClipState& ); void xorRange(const B2DRange& ); - void xorPolygon(const B2DPolygon& ); void xorPolyPolygon(const B2DPolyPolygon& ); - void xorClipState(const B2DClipState& ); B2DPolyPolygon getClipPoly() const; }; |