From 629cd5caadc6dced0d0f6b48368c5b6e55ea757e Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Tue, 10 Jan 2012 09:35:58 +0000 Subject: callcatcher: update list --- basegfx/source/tuple/b2dtuple.cxx | 30 ------------------------------ 1 file changed, 30 deletions(-) (limited to 'basegfx/source/tuple') diff --git a/basegfx/source/tuple/b2dtuple.cxx b/basegfx/source/tuple/b2dtuple.cxx index cb44b7d4c11d..04fd5510bd6a 100644 --- a/basegfx/source/tuple/b2dtuple.cxx +++ b/basegfx/source/tuple/b2dtuple.cxx @@ -45,34 +45,6 @@ namespace basegfx mfY( rTup.getY() ) {} - void B2DTuple::correctValues(const double fCompareValue) - { - if(0.0 == fCompareValue) - { - if(::basegfx::fTools::equalZero(mfX)) - { - mfX = 0.0; - } - - if(::basegfx::fTools::equalZero(mfY)) - { - mfY = 0.0; - } - } - else - { - if(::basegfx::fTools::equal(mfX, fCompareValue)) - { - mfX = fCompareValue; - } - - if(::basegfx::fTools::equal(mfY, fCompareValue)) - { - mfY = fCompareValue; - } - } - } - B2ITuple fround(const B2DTuple& rTup) { return B2ITuple(fround(rTup.getX()), fround(rTup.getY())); @@ -80,6 +52,4 @@ namespace basegfx } // end of namespace basegfx -// eof - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit