diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-09-09 09:07:24 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-09-09 10:13:23 +0200 |
commit | 2e08ed63f070fb15b933fe9dc4c37f2daa6d4295 (patch) | |
tree | 593708be6942c704cd059dcf69acb3593bd0dd75 /starmath/inc/rect.hxx | |
parent | ed624d7f9c63c19e92862a926641103f9bdec071 (diff) |
OSL_ENSURE -> SAL_WARN_IF
Change-Id: I2807797c6906ae5aaa8aabf7298df5fd8604e96a
Diffstat (limited to 'starmath/inc/rect.hxx')
-rw-r--r-- | starmath/inc/rect.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/inc/rect.hxx b/starmath/inc/rect.hxx index 17ed2da1ced1..2886a57631e4 100644 --- a/starmath/inc/rect.hxx +++ b/starmath/inc/rect.hxx @@ -225,7 +225,7 @@ inline void SmRect::CopyMBL(const SmRect &rRect) inline long SmRect::GetBaseline() const { - OSL_ENSURE(HasBaseline(), "Sm: Baseline nicht vorhanden"); + SAL_WARN_IF( !HasBaseline(), "starmath", "Baseline does not exist" ); return nBaseline; } |