summaryrefslogtreecommitdiff
path: root/filter/source/xsltfilter
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-12-15 10:11:50 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-12-15 10:11:50 +0100
commit260fbeb21a86f7483891016a483c0b175947a35e (patch)
tree7377bf3fe69b5566c73009e95d925808be53bac3 /filter/source/xsltfilter
parent2b86f17f0538519d468aaa9811f2f1cdfb270134 (diff)
filter: Use appropriate OUString functions on string constants
Change-Id: I4b1c365bb2ff80b30748630d2c6296bf4ed6fd53
Diffstat (limited to 'filter/source/xsltfilter')
-rw-r--r--filter/source/xsltfilter/LibXSLTTransformer.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/filter/source/xsltfilter/LibXSLTTransformer.cxx b/filter/source/xsltfilter/LibXSLTTransformer.cxx
index eb07843a9803..c76161497baf 100644
--- a/filter/source/xsltfilter/LibXSLTTransformer.cxx
+++ b/filter/source/xsltfilter/LibXSLTTransformer.cxx
@@ -334,8 +334,7 @@ namespace XSLT
if (lastErr)
msg = OUString::createFromAscii(lastErr->message);
else
- msg = OUString::createFromAscii(
- "Unknown XSLT transformation error");
+ msg = "Unknown XSLT transformation error";
m_transformer->error(msg);
}