summaryrefslogtreecommitdiff
path: root/svx/source/xml
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-06-26 13:54:18 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-06-26 13:55:35 +0200
commit255c96178890f3dabb2b644a044b3f60e173cb09 (patch)
treef3d848051d79767a9fbd67074ba5ab0758374ab9 /svx/source/xml
parentcec3fd6de65a0f526c2b990e8dc54935d0a7864a (diff)
loplugin:stringconstant: handle OUString+=OUString(literal)
Change-Id: If1ad4df75f592c5f9bfedb490243526007fff35f
Diffstat (limited to 'svx/source/xml')
-rw-r--r--svx/source/xml/xmlxtexp.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/xml/xmlxtexp.cxx b/svx/source/xml/xmlxtexp.cxx
index aa9107a65a52..9b71b37c9b86 100644
--- a/svx/source/xml/xmlxtexp.cxx
+++ b/svx/source/xml/xmlxtexp.cxx
@@ -271,7 +271,7 @@ bool SvxXMLXTableExportComponent::save(
}
else
{
- aPath += OUString( ".xml" );
+ aPath += ".xml";
try {
xStream = xStorage->openStreamElement( aPath, eCreate );
if( !xStream.is() )