diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-08-04 15:55:42 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-08-04 15:59:06 +0200 |
commit | 5717de74f5bdeb975d9acc9ab7a4dc8968f0ca47 (patch) | |
tree | c790c5751ce2bbb14f2142dd4f94a9ee34b9c17f /xmlsecurity | |
parent | ec960ba032f613a22d482683a3c44074e4676613 (diff) |
create OUString from literal
Change-Id: I8198fbad20daa7262e42a452c8d81fcfa3331680
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.cxx b/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.cxx index baac544ba738..abdecc38afe6 100644 --- a/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.cxx +++ b/xmlsecurity/source/xmlsec/xmldocumentwrapper_xmlsecimpl.cxx @@ -253,7 +253,7 @@ void XMLDocumentWrapper_XmlSecImpl::sendStartElement( else { ouAttrName = OUString(C2U( (sal_Char*)pAttrNs->prefix)) - +OUString(C2U( (sal_Char*)":" )) + +OUString(":") +OUString(C2U( (sal_Char*)pAttrName )); } |