summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2017-05-07 14:35:14 +1000
committerChris Sherlock <chris.sherlock79@gmail.com>2017-05-07 14:35:14 +1000
commit3965f4cb28676133dc37a926e56b4d612e2a57ba (patch)
treee53fd4a6d0453b861a870060ecf6be89249116f0 /starmath
parent381c43eb5d5455aeb5ed3335e89bb6b56c843080 (diff)
tdf#43157: convert starmath module away from OSL_ASSERT to assert
Change-Id: I446eb5831dd41edac0752d1c4813a7e711042cd3
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/wordexportbase.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/source/wordexportbase.cxx b/starmath/source/wordexportbase.cxx
index cf32d067f364..95418f3df931 100644
--- a/starmath/source/wordexportbase.cxx
+++ b/starmath/source/wordexportbase.cxx
@@ -161,7 +161,7 @@ void SmWordExportBase::HandleMath(const SmNode* pNode, int nLevel)
{
case TDIVIDEBY:
case TACUTE:
- OSL_ASSERT(false);
+ assert(false);
SAL_FALLTHROUGH; // the above are handled elsewhere, e.g. when handling BINHOR
default:
HandleText(pNode, nLevel);