summaryrefslogtreecommitdiff
path: root/svtools/source/contnr
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-10-01 18:22:21 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-10-02 08:01:19 +0200
commitfe3d9961e32fd7230e21716793adaddffdf2463e (patch)
tree05511ede00f3b15842b4f1c0f3d9e90efc79ff92 /svtools/source/contnr
parent5da08d7b14b03459070228bad1b42dc5d1746b9f (diff)
loplugin:stringadd in svtools
Change-Id: Ic085990173051f421d1ffc7914574cb63a7ae21d Reviewed-on: https://gerrit.libreoffice.org/79982 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svtools/source/contnr')
-rw-r--r--svtools/source/contnr/fileview.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/contnr/fileview.cxx b/svtools/source/contnr/fileview.cxx
index 96303b749b35..40df91d555ff 100644
--- a/svtools/source/contnr/fileview.cxx
+++ b/svtools/source/contnr/fileview.cxx
@@ -1863,9 +1863,9 @@ OUString SvtFileView_Impl::FolderInserted( const OUString& rURL, const OUString&
// title, type, size, date
aValue = pData->GetTitle();
ReplaceTabWithString( aValue );
- aValue += aTab + pData->maType + aTab;
- // folders don't have a size
- aValue += aTab;
+ aValue += aTab + pData->maType + aTab +
+ // folders don't have a size
+ aTab;
// set the date
SvtSysLocale aSysLocale;
const LocaleDataWrapper& rLocaleData = aSysLocale.GetLocaleData();