diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-05-07 13:19:42 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-05-07 13:19:42 +1000 |
commit | d8c2e2cdf267d9222629739261519b89a4025ea2 (patch) | |
tree | 229706ee1d4f744cc9773343312e2b2aefee20ca | |
parent | 825db3204260c8dc9502b997250c42193376322b (diff) |
tdf#43157: convert basctl module away from OSL_ASSERT to assert
Change-Id: I68d18d6c6261c964c6d364b2d492b23b508883cc
-rw-r--r-- | basctl/source/basicide/baside3.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basctl/source/basicide/baside3.cxx b/basctl/source/basicide/baside3.cxx index 550bcd3637e9..8e30691a7093 100644 --- a/basctl/source/basicide/baside3.cxx +++ b/basctl/source/basicide/baside3.cxx @@ -891,7 +891,7 @@ bool implImportDialog( vcl::Window* pWin, const OUString& rCurPath, const Script {} } bool bValidName = !aXmlDlgName.isEmpty(); - OSL_ASSERT( bValidName ); + assert( bValidName ); if( !bValidName ) return bDone; @@ -934,7 +934,7 @@ bool implImportDialog( vcl::Window* pWin, const OUString& rCurPath, const Script Shell* pShell = GetShell(); if (!pShell) { - OSL_ASSERT(pShell); + assert(pShell); return bDone; } |