diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-05-07 17:03:35 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-05-07 17:03:35 +1000 |
commit | 97eb00c75e173d4c8d0b483a7941ad3d2f23783e (patch) | |
tree | 7974a8b9423c56982646366b0859dfb2a1a88d50 /xmlscript/test | |
parent | d0a99cc2ed76be220f7e868e332ba19f6e48a440 (diff) |
revert OSL_ASSERT changes
Change-Id: I365d140446bd2a62cf8256acbfdd53fe72987380
Diffstat (limited to 'xmlscript/test')
-rw-r--r-- | xmlscript/test/imexp.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmlscript/test/imexp.cxx b/xmlscript/test/imexp.cxx index 580a22bd294a..6965d4126a51 100644 --- a/xmlscript/test/imexp.cxx +++ b/xmlscript/test/imexp.cxx @@ -63,7 +63,7 @@ Reference< XComponentContext > createInitialComponentContext( OUString file_url; oslFileError rc = osl_getFileURLFromSystemPath( inst_dir.pData, &file_url.pData ); - assert( osl_File_E_None == rc ); + OSL_ASSERT( osl_File_E_None == rc ); OUString unorc = file_url + ("/" LIBO_ETC_FOLDER "/" SAL_CONFIGFILE("louno") ); @@ -123,7 +123,7 @@ void exportToFile( nRead = xStream->readBytes( readBytes, 1024 ); if (! nRead) break; - assert( readBytes.getLength() >= nRead ); + OSL_ASSERT( readBytes.getLength() >= nRead ); sal_Int32 nPos = bytes.getLength(); bytes.realloc( nPos + nRead ); @@ -169,7 +169,7 @@ void MyApp::Main() RTL_TEXTENCODING_ASCII_US ) ); Reference< container::XNameContainer > xModel( importFile( aParam1.getStr(), xContext ) ); - assert( xModel.is() ); + OSL_ASSERT( xModel.is() ); Reference< awt::XUnoControlDialog > xDlg = UnoControlDialog::create( xContext ); xDlg->setModel( xModel ); |