diff options
author | Jacek Wolszczak <shutdownrunner@gmail.com> | 2011-03-19 14:01:13 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-03-19 14:01:13 +0100 |
commit | f9585d9dc148653afee9286b00595222effe3d9c (patch) | |
tree | 2417c3f1a22881d61f151557589f9b776bcaa115 /starmath/inc/caret.hxx | |
parent | 1ade0128a0cec27fdc6106245839e14e8d968482 (diff) |
REPLACE j_assert with OSL_
Diffstat (limited to 'starmath/inc/caret.hxx')
-rw-r--r-- | starmath/inc/caret.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/inc/caret.hxx b/starmath/inc/caret.hxx index be40598982c7..c0bda175746b 100644 --- a/starmath/inc/caret.hxx +++ b/starmath/inc/caret.hxx @@ -188,7 +188,7 @@ public: SmCaretPosGraphEntry* Add(SmCaretPos pos, SmCaretPosGraphEntry* left = NULL, SmCaretPosGraphEntry* right = NULL){ - j_assert(pos.Index >= 0, "Index shouldn't be -1!"); + OSL_ENSURE(pos.Index >= 0, "Index shouldn't be -1!"); return Add(SmCaretPosGraphEntry(pos, left, right)); } /** Get an iterator for this graph */ |