summaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-11-06 08:32:47 +0100
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-11-06 10:44:44 +0100
commit0de59fac73861466aea95796f16a0fe17e083172 (patch)
tree34acb7638c486ac7697732e564f0cd9cf4f472a7 /filter
parentResolves: tdf#137181 set the clipboard asynchronously (diff)
downloadcore-0de59fac73861466aea95796f16a0fe17e083172.tar.gz
core-0de59fac73861466aea95796f16a0fe17e083172.zip
Revert "loplugin:stringbuffer"
This reverts commit f0356b6128bb4e78041d53025ad7c2e0b8e0c299. Reason for revert: There is a OUStringConcat overload for OUStringBuffer which would have kicked in here, so this is unnecessary Change-Id: I3bafb6c30bd3a2c1912daf227554889f1e09c78a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105354 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 5f94c11870ea..68ed95a065e5 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)
- .append(sDelim)
- .append(pAppInfo->maXMLExporter)
- .append(sDelim);
+ sValue.append(pAppInfo->maXMLImporter +
+ sDelim +
+ pAppInfo->maXMLExporter +
+ sDelim);
sValue.append(createRelativeURL( filter->maFilterName, filter->maImportXSLT ));
sValue.append(sDelim);