diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-02-26 10:30:44 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-02-26 10:30:44 +0100 |
commit | f47a542835233341b17b9bad015fe6da3c47ab3f (patch) | |
tree | 561114a1e2212bd5eeae39ec97894b6b8c715c92 | |
parent | 02aa249c70a87ef5d0b410e49b03eb136d8dadba (diff) |
Move bogus OSL_ASSERT(msg) to OSL_FAIL(msg)
-rw-r--r-- | sdext/source/pdfimport/services.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sdext/source/pdfimport/services.cxx b/sdext/source/pdfimport/services.cxx index ac83474..eaedf0b 100644 --- a/sdext/source/pdfimport/services.cxx +++ b/sdext/source/pdfimport/services.cxx @@ -147,7 +147,7 @@ extern "C" sal_Bool SAL_CALL component_writeInfo( void* /*pServiceManager*/, voi } catch( Exception& ) { - OSL_ASSERT( "OModule::writeComponentInfos: something went wrong while creating the keys!" ); + OSL_FAIL( "OModule::writeComponentInfos: something went wrong while creating the keys!" ); return sal_False; } ++pComponents; |