summaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
authorNoel <noelgrandin@gmail.com>2020-11-05 20:54:16 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-11-06 07:57:13 +0100
commitf0356b6128bb4e78041d53025ad7c2e0b8e0c299 (patch)
treeee2d16dc7f94f814d63675493605e4eb4c3db569 /filter
parenttdf#137908 Revert "use FasterParser for LoadXMLExceptList_Imp" (diff)
downloadcore-f0356b6128bb4e78041d53025ad7c2e0b8e0c299.tar.gz
core-f0356b6128bb4e78041d53025ad7c2e0b8e0c299.zip
loplugin:stringbuffer
Change-Id: Id6f7268f12eb728dbb255aa19cd590b6813c4f01 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105377 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/xsltdialog/typedetectionexport.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/filter/source/xsltdialog/typedetectionexport.cxx b/filter/source/xsltdialog/typedetectionexport.cxx
index 68ed95a065e5..5f94c11870ea 100644
--- a/filter/source/xsltdialog/typedetectionexport.cxx
+++ b/filter/source/xsltdialog/typedetectionexport.cxx
@@ -166,10 +166,10 @@ void TypeDetectionExporter::doExport( const Reference< XOutputStream >& xOS, co
sDelim);
const application_info_impl* pAppInfo = getApplicationInfo( filter->maExportService );
- sValue.append(pAppInfo->maXMLImporter +
- sDelim +
- pAppInfo->maXMLExporter +
- sDelim);
+ sValue.append(pAppInfo->maXMLImporter)
+ .append(sDelim)
+ .append(pAppInfo->maXMLExporter)
+ .append(sDelim);
sValue.append(createRelativeURL( filter->maFilterName, filter->maImportXSLT ));
sValue.append(sDelim);