diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-05-07 14:17:19 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-05-07 14:17:19 +1000 |
commit | 83017d884d58a2fe0ccaf23271ab3e232118ec79 (patch) | |
tree | 030b4586ad750d10b837dd4cbd5bb20a5782586c /sc/source/ui/docshell | |
parent | 9d4d4d8434e5333ecb9464c76aea795dfbd6da2c (diff) |
tdf#43157: convert sc module away from OSL_ASSERT to assert
Change-Id: Iead653868ea7e0d1ed4ba83ef1a46e1ae5874d13
Diffstat (limited to 'sc/source/ui/docshell')
-rw-r--r-- | sc/source/ui/docshell/dbdocfun.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/docshell/dbdocfun.cxx b/sc/source/ui/docshell/dbdocfun.cxx index 7fb1f3a19858..d91c4e3bf053 100644 --- a/sc/source/ui/docshell/dbdocfun.cxx +++ b/sc/source/ui/docshell/dbdocfun.cxx @@ -1230,7 +1230,7 @@ bool ScDBDocFunc::DataPilotUpdate( ScDPObject* pOldObj, const ScDPObject* pNewOb return UpdatePivotTable(*pOldObj, bRecord, bApi); } - OSL_ASSERT(pOldObj && pNewObj && pOldObj != pNewObj); + assert(pOldObj && pNewObj && pOldObj != pNewObj); ScDocShellModificator aModificator( rDocShell ); WaitObject aWait( ScDocShell::GetActiveDialogParent() ); |