diff options
author | Miklos Vajna <vmiklos@suse.cz> | 2013-08-12 10:20:43 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2013-08-12 10:56:29 +0200 |
commit | a45492fa9bfe5ba76910b178fda64205ae5f6705 (patch) | |
tree | 07ebbb5237a88b4c79edf1fa8eb9a322827acf8b | |
parent | e40f07f731080b1e71d1df507f92108fa5ef7b75 (diff) |
OSL_FAIL -> SAL_WARN
Change-Id: Ifbf7db8044ee28f5f24c03480391a315358a2db4
-rw-r--r-- | writerfilter/source/dmapper/DomainMapper_Impl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx b/writerfilter/source/dmapper/DomainMapper_Impl.cxx index c85f0aadac50..eb8fd3ce749e 100644 --- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx +++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx @@ -1605,9 +1605,9 @@ void DomainMapper_Impl::PushAnnotation() m_aTextAppendStack.push(TextAppendContext(uno::Reference< text::XTextAppend >( xAnnotationText, uno::UNO_QUERY_THROW ), m_bIsNewDoc ? uno::Reference<text::XTextCursor>() : m_xBodyText->createTextCursorByRange(xAnnotationText->getStart()))); } - catch( const uno::Exception& ) + catch( const uno::Exception& rException) { - OSL_FAIL( "exception in PushAnnotation" ); + SAL_WARN("writerfilter", "exception in PushAnnotation: " << rException.Message); } } |