summaryrefslogtreecommitdiff
path: root/basegfx/source/tools/canvastools.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-01-20 16:36:19 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-01-21 07:18:38 +0000
commit90d892664a6c49a8ae25a72ddccf54dba9d0e429 (patch)
treed9bb4a7307e349b88a4d528854abb44e4323f563 /basegfx/source/tools/canvastools.cxx
parentea6fdbaeeb51ad695f1c3754b796b7273eb4baad (diff)
loplugin: unused return values
Change-Id: I4eb1f0c9245c04058fd5e47046f043f8840a79c7 Reviewed-on: https://gerrit.libreoffice.org/21628 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'basegfx/source/tools/canvastools.cxx')
-rw-r--r--basegfx/source/tools/canvastools.cxx8
1 files changed, 0 insertions, 8 deletions
diff --git a/basegfx/source/tools/canvastools.cxx b/basegfx/source/tools/canvastools.cxx
index 75534f631aee..a4a47ca37c88 100644
--- a/basegfx/source/tools/canvastools.cxx
+++ b/basegfx/source/tools/canvastools.cxx
@@ -471,14 +471,6 @@ namespace basegfx
rRect.Y + rRect.Height );
}
- ::basegfx::B2IBox b2ISurroundingBoxFromB2DRange( const ::basegfx::B2DRange& rRange )
- {
- return ::basegfx::B2IBox( static_cast<sal_Int32>( floor(rRange.getMinX()) ),
- static_cast<sal_Int32>( floor(rRange.getMinY()) ),
- static_cast<sal_Int32>( ceil(rRange.getMaxX()) ),
- static_cast<sal_Int32>( ceil(rRange.getMaxY()) ) );
- }
-
::basegfx::B2IRange b2ISurroundingRangeFromB2DRange( const ::basegfx::B2DRange& rRange )
{
return ::basegfx::B2IRange( static_cast<sal_Int32>( floor(rRange.getMinX()) ),