diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-04-23 16:07:32 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-04-27 14:07:56 +0200 |
commit | c7c6f0af6c836ebe0968967a1e7c8320b0ac17d6 (patch) | |
tree | 4bc5b2fa623b9765b88bbfe7de10a7590c87d5c8 /sc/source/ui/view/tabview.cxx | |
parent | 99482297c7dd497e41fad2e7193759043e305101 (diff) |
loplugin:stringadd convert chained append to +
which can use the more efficient *StringConcat
Also fix a crash in stringview plugin which
started happening while I working on this.
Change-Id: I91a5b9b7707d1594d27d80b73930f5afac8ae608
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114568
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/ui/view/tabview.cxx')
-rw-r--r-- | sc/source/ui/view/tabview.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/ui/view/tabview.cxx b/sc/source/ui/view/tabview.cxx index f4581d394dd0..b727d817e185 100644 --- a/sc/source/ui/view/tabview.cxx +++ b/sc/source/ui/view/tabview.cxx @@ -2411,11 +2411,11 @@ void lcl_createGroupsData( bool bGroupHidden = pEntry->IsHidden(); rGroupsBuffer - .append("{ \"level\": ").append(sal_Int32(nLevel + 1)).append(", ") - .append("\"index\": ").append(sal_Int32(nIndex)).append(", ") - .append("\"startPos\": ").append(rGroupStartPositions[nLevel]).append(", ") - .append("\"endPos\": ").append(nTotalPx).append(", ") - .append("\"hidden\": ").append(sal_Int32(bGroupHidden ? 1 : 0)).append(" }"); + .append("{ \"level\": ").append(sal_Int32(nLevel + 1)).append(", " + "\"index\": ").append(sal_Int32(nIndex)).append(", " + "\"startPos\": ").append(rGroupStartPositions[nLevel]).append(", " + "\"endPos\": ").append(nTotalPx).append(", " + "\"hidden\": ").append(sal_Int32(bGroupHidden ? 1 : 0)).append(" }"); // look for the next visible group control at level nLevel bool bFound = false; |