diff options
author | Noel Grandin <noel@peralex.com> | 2013-12-13 09:29:22 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-12-17 11:49:03 +0200 |
commit | 08fe82e59cbc598d2683d72877653316c1e41962 (patch) | |
tree | 5eeace3006ef2bfd58a5d97a000f336b8b06099c /xmlsecurity/source | |
parent | fc985c30048d410ab68a55af64f56df85547a6bf (diff) |
Remove unnecessary use of OUString constructor in + expressions
Convert code like
aFilename = OUString::number(nFilePostfixCount) + OUString(".bmp");
to
aFilename = OUString::number(nFilePostfixCount) + ".bmp";
Change-Id: I03f513ad1c8ec8846b2afbdc67ab12525ed07e50
Diffstat (limited to 'xmlsecurity/source')
-rw-r--r-- | xmlsecurity/source/helper/xsecctl.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/xmlsecurity/source/helper/xsecctl.cxx b/xmlsecurity/source/helper/xsecctl.cxx index 7f00a7f80561..1134c864fbc1 100644 --- a/xmlsecurity/source/helper/xsecctl.cxx +++ b/xmlsecurity/source/helper/xsecctl.cxx @@ -915,14 +915,14 @@ void XSecController::exportSignature( pAttributeList = new SvXMLAttributeList(); pAttributeList->AddAttribute( OUString(ATTR_XMLNS) - +OUString(":") - +OUString(NSTAG_DC), + + ":" + + OUString(NSTAG_DC), OUString(NS_DC)); xDocumentHandler->startElement( OUString(NSTAG_DC) - +OUString(":") - +tag_Date, + + ":" + + tag_Date, cssu::Reference< cssxs::XAttributeList > (pAttributeList)); OUStringBuffer buffer; @@ -940,8 +940,8 @@ void XSecController::exportSignature( xDocumentHandler->endElement( OUString(NSTAG_DC) - +OUString(":") - +tag_Date); + + ":" + + tag_Date); } xDocumentHandler->endElement( tag_SignatureProperty ); } |