From fb6fefbd9482f6fa26447be417286ae1935c0702 Mon Sep 17 00:00:00 2001 From: Thorsten Behrens Date: Fri, 16 Jan 2004 09:34:43 +0000 Subject: #110496# Added integer point, size and rectangle classes, needed for the new canvas --- basegfx/source/point/b2dhompoint.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'basegfx/source/point/b2dhompoint.cxx') diff --git a/basegfx/source/point/b2dhompoint.cxx b/basegfx/source/point/b2dhompoint.cxx index e23c9530b0e8..5fbb04c0313c 100644 --- a/basegfx/source/point/b2dhompoint.cxx +++ b/basegfx/source/point/b2dhompoint.cxx @@ -2,9 +2,9 @@ * * $RCSfile: b2dhompoint.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: aw $ $Date: 2003-12-03 09:24:28 $ + * last change: $Author: thb $ $Date: 2004-01-16 10:34:30 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -73,7 +73,7 @@ namespace basegfx { - sal_Bool B2DHomPoint::implIsHomogenized() const + bool B2DHomPoint::implIsHomogenized() const { const double fOne(1.0); return ::basegfx::fTools::equal(fOne, mfW); @@ -181,13 +181,13 @@ namespace basegfx return *this; } - sal_Bool B2DHomPoint::operator==( const B2DHomPoint& rPnt ) const + bool B2DHomPoint::operator==( const B2DHomPoint& rPnt ) const { implTestAndHomogenize(); return (maTuple == rPnt.maTuple); } - sal_Bool B2DHomPoint::operator!=( const B2DHomPoint& rPnt ) const + bool B2DHomPoint::operator!=( const B2DHomPoint& rPnt ) const { implTestAndHomogenize(); return (maTuple != rPnt.maTuple); -- cgit v1.2.3