summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-02-17 11:15:46 +0100
committerLuboš Luňák <l.lunak@suse.cz>2013-02-17 11:20:14 +0100
commitd7f563ba35f9a6b565224b9076dbb238b423e225 (patch)
treebe6c7894ca07247858ee57db22837e64839986b8
parent80d81b40a1915eec599fc7004698ff113e5bb47f (diff)
fix build, caused by fast string concat
Change-Id: I07025171f0865b34de9a85b7820321e5eac46758
-rw-r--r--filter/source/xsltfilter/XSLTFilter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/source/xsltfilter/XSLTFilter.cxx b/filter/source/xsltfilter/XSLTFilter.cxx
index a16627fd06c7..2b7727449760 100644
--- a/filter/source/xsltfilter/XSLTFilter.cxx
+++ b/filter/source/xsltfilter/XSLTFilter.cxx
@@ -241,7 +241,7 @@ m_rServiceFactory(r), m_bTerminated(sal_False), m_bError(sal_False)
Exception e;
if (a >>= e)
{
- OSL_FAIL("XSLTFilter::error was called: " + OUStringToOString(e.Message, RTL_TEXTENCODING_ASCII_US));
+ SAL_WARN("filter.xslt", "XSLTFilter::error was called: " << e.Message);
}
m_bError = sal_True;
osl_setCondition(m_cTransformed);