summaryrefslogtreecommitdiff
path: root/basegfx/inc/basegfx/range/b1drange.hxx
diff options
context:
space:
mode:
authorArmin Weiss <aw@openoffice.org>2003-11-05 11:25:58 +0000
committerArmin Weiss <aw@openoffice.org>2003-11-05 11:25:58 +0000
commitc3663a687ccc9365b2b4eb4a3950b8d94c2d6ea7 (patch)
treec47ce5e59d718d5f772121000a356ef523662b17 /basegfx/inc/basegfx/range/b1drange.hxx
parent571971699571e0baf9710ddf076ebf27aebb548d (diff)
Added PolyPolygonTools, Added PolygonTool functionality, changed bool to sal_Bool
Diffstat (limited to 'basegfx/inc/basegfx/range/b1drange.hxx')
-rw-r--r--basegfx/inc/basegfx/range/b1drange.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/basegfx/inc/basegfx/range/b1drange.hxx b/basegfx/inc/basegfx/range/b1drange.hxx
index 3e9094585a37..eedb4bc5911b 100644
--- a/basegfx/inc/basegfx/range/b1drange.hxx
+++ b/basegfx/inc/basegfx/range/b1drange.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: b1drange.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: aw $ $Date: 2003-10-31 10:13:08 $
+ * last change: $Author: aw $ $Date: 2003-11-05 12:25:43 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -89,7 +89,7 @@ namespace basegfx
{
}
- bool isEmpty() const
+ sal_Bool isEmpty() const
{
return maRange.isEmpty();
}
@@ -119,12 +119,12 @@ namespace basegfx
return maRange.getRange();
}
- bool isInside(double fValue) const
+ sal_Bool isInside(double fValue) const
{
return maRange.isInside(fValue);
}
- bool isInside(const B1DRange& rRange) const
+ sal_Bool isInside(const B1DRange& rRange) const
{
return maRange.isInside(rRange.maRange);
}