diff options
Diffstat (limited to 'sw/inc/swrect.hxx')
-rw-r--r-- | sw/inc/swrect.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/inc/swrect.hxx b/sw/inc/swrect.hxx index c279f4dbd1..38882b6f24 100644 --- a/sw/inc/swrect.hxx +++ b/sw/inc/swrect.hxx @@ -28,6 +28,7 @@ #ifndef _SWRECT_HXX #define _SWRECT_HXX #include "errhdl.hxx" +#include <osl/diagnose.h> #include <tools/gen.hxx> class SvStream; @@ -303,7 +304,7 @@ inline SwRect &SwRect::operator-=( const Size &rSz ) // other inline Rectangle SwRect::SVRect() const { - ASSERT( !IsEmpty(), "SVRect() without Width or Height" ); + OSL_ENSURE( !IsEmpty(), "SVRect() without Width or Height" ); return Rectangle( m_Point.getX(), m_Point.getY(), m_Point.getX() + m_Size.getWidth() - 1, //Right() m_Point.getY() + m_Size.getHeight() - 1 ); //Bottom() |