diff options
author | Armin Weiss <aw@openoffice.org> | 2003-11-26 13:32:41 +0000 |
---|---|---|
committer | Armin Weiss <aw@openoffice.org> | 2003-11-26 13:32:41 +0000 |
commit | c4068e1d9c41fb4a08498c6318684226076bc56c (patch) | |
tree | 8086e092b516706d2523d61292cda5bf5e5788e2 /basegfx/source/inc/PolygonPoint.hxx | |
parent | fc4520995d1993f4f12d2dbb876226da341914b3 (diff) |
BDRange no longer needed, moved to namespace range and the directories there
Diffstat (limited to 'basegfx/source/inc/PolygonPoint.hxx')
-rw-r--r-- | basegfx/source/inc/PolygonPoint.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/basegfx/source/inc/PolygonPoint.hxx b/basegfx/source/inc/PolygonPoint.hxx index 5e38fb0dca73..2d8a7c164d09 100644 --- a/basegfx/source/inc/PolygonPoint.hxx +++ b/basegfx/source/inc/PolygonPoint.hxx @@ -2,9 +2,9 @@ * * $RCSfile: PolygonPoint.hxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: aw $ $Date: 2003-11-05 12:25:50 $ + * last change: $Author: aw $ $Date: 2003-11-26 14:32:41 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -299,8 +299,8 @@ public: return sal_True; // beziercounts are equal and not zero; compare them - DBG_ASSERT(0L != mpVectors, "Error: Bezier list needs to exist here(!)"); - DBG_ASSERT(0L != rPointList.mpVectors, "Error: Bezier list needs to exist here(!)"); + OSL_ENSURE(0L != mpVectors, "Error: Bezier list needs to exist here(!)"); + OSL_ENSURE(0L != rPointList.mpVectors, "Error: Bezier list needs to exist here(!)"); return (*mpVectors == *rPointList.mpVectors); } |