Kaydet (Commit) d8c2e2cd authored tarafından Chris Sherlock's avatar Chris Sherlock

tdf#43157: convert basctl module away from OSL_ASSERT to assert

Change-Id: I68d18d6c6261c964c6d364b2d492b23b508883cc
üst 825db320
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment