summaryrefslogtreecommitdiff
path: root/basegfx/test/basegfx2d.cxx
diff options
context:
space:
mode:
authorThorsten Behrens <tbehrens@suse.com>2011-11-02 21:43:22 +0100
committerThorsten Behrens <tbehrens@suse.com>2011-11-02 23:58:28 +0100
commitaeee94cb587082430f3a277a24ae459829f6d384 (patch)
tree57beb15e8686434fe9e01ffff19fc13672b2b706 /basegfx/test/basegfx2d.cxx
parent3c8f2388769a439a871c90550832a6aeb03227dc (diff)
Cleanup basegfx - docs, visibility, pointless methods.
Added docs to the range/* classes, removed methods the compiler can generate for us, removed unused header, and cleaned up visibility markup (inlines don't really need to be exported).
Diffstat (limited to 'basegfx/test/basegfx2d.cxx')
-rw-r--r--basegfx/test/basegfx2d.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/basegfx/test/basegfx2d.cxx b/basegfx/test/basegfx2d.cxx
index 424133aec10b..18a046ac93c0 100644
--- a/basegfx/test/basegfx2d.cxx
+++ b/basegfx/test/basegfx2d.cxx
@@ -1268,6 +1268,10 @@ public:
Type aRange3(0,2);
CPPUNIT_ASSERT_MESSAGE("box overlapping is fully overlapping now", aRange.overlapsMore(aRange3));
+
+ // just so that this compiles -
+ Type aRange4( aRange );
+ (void)aRange4;
}
void check()