summaryrefslogtreecommitdiff
path: root/basegfx/inc/basegfx/point/b3dhompoint.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx/inc/basegfx/point/b3dhompoint.hxx')
-rw-r--r--basegfx/inc/basegfx/point/b3dhompoint.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/basegfx/inc/basegfx/point/b3dhompoint.hxx b/basegfx/inc/basegfx/point/b3dhompoint.hxx
index 881a9de2f0fb..dc470d1c7ebd 100644
--- a/basegfx/inc/basegfx/point/b3dhompoint.hxx
+++ b/basegfx/inc/basegfx/point/b3dhompoint.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b3dhompoint.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2003-10-31 10:12:49 $
+ * last change: $Author: aw $ $Date: 2003-11-05 12:25:38 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -94,9 +94,9 @@ namespace basegfx
/** Test if this homogen point does have a homogenous part
- @return Returns true if this point has no homogenous part
+ @return Returns sal_True if this point has no homogenous part
*/
- bool implIsHomogenized() const
+ sal_Bool implIsHomogenized() const
{
const double fOne(1.0);
return ::basegfx::numeric::fTools::equal(mfW, fOne);
@@ -322,13 +322,13 @@ namespace basegfx
return *this;
}
- bool operator==( const B3DHomPoint& rPnt ) const
+ sal_Bool operator==( const B3DHomPoint& rPnt ) const
{
implTestAndHomogenize();
return (maTuple == rPnt.maTuple);
}
- bool operator!=( const B3DHomPoint& rPnt ) const
+ sal_Bool operator!=( const B3DHomPoint& rPnt ) const
{
implTestAndHomogenize();
return (maTuple != rPnt.maTuple);