diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-10 16:23:37 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-11 07:18:11 +0200 |
commit | cdbac696fb0cbb1d09645bc02799eed5504b192b (patch) | |
tree | 25ef63dbfb17fdafcd073cbc0c1d88bd5759e408 /test | |
parent | cfd06eb99b8f366bfe96e4a6d3112e4c6057098b (diff) |
simplify "a = a +" to "a +="
mostly so that my stringadd loplugin can point out places to improve
Change-Id: I9920ee1c99cdb6b811ba67ff9d8e32aa261884b5
Reviewed-on: https://gerrit.libreoffice.org/80618
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'test')
-rw-r--r-- | test/source/bootstrapfixture.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/source/bootstrapfixture.cxx b/test/source/bootstrapfixture.cxx index 6e06d352dec1..6279ec8d8633 100644 --- a/test/source/bootstrapfixture.cxx +++ b/test/source/bootstrapfixture.cxx @@ -211,8 +211,7 @@ void test::BootstrapFixture::validate(const OUString& rPath, test::ValidationFor sal_Int32 nStartOfNumber = nIndex + std::strlen("Grand total of errors in submitted package: "); OUString aNumber = aContentOUString.copy(nStartOfNumber); sal_Int32 nErrors = aNumber.toInt32(); - OString aMsg("validation error in OOXML export: Errors: "); - aMsg = aMsg + OString::number(nErrors); + OString aMsg = "validation error in OOXML export: Errors: " + OString::number(nErrors); if(nErrors) { SAL_WARN("test", aContentOUString); |