summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-05-29 14:04:44 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-05-29 20:56:06 +0200
commit5f56f07e9278e357a079cbecb5366da98e36d97f (patch)
tree56b12fd785291f7bfe8bf08ee22a47b6f43dbd89 /sw
parent33cac418db78f64f7fa84b8e65c01c2b02cf17a7 (diff)
use for-range loop on Sequence
Change-Id: Ib2d7b21e0fa52087027c0b3b1d362693c7019ba3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93856 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/doc/number.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sw/source/core/doc/number.cxx b/sw/source/core/doc/number.cxx
index d871a8033410..02c2512e7872 100644
--- a/sw/source/core/doc/number.cxx
+++ b/sw/source/core/doc/number.cxx
@@ -1226,8 +1226,7 @@ namespace numfunc
void SwDefBulletConfig::LoadConfig()
{
uno::Sequence<OUString> aPropNames = GetPropNames();
- uno::Sequence<uno::Any> aValues =
- GetProperties( aPropNames );
+ uno::Sequence<uno::Any> aValues = GetProperties( aPropNames );
const uno::Any* pValues = aValues.getConstArray();
OSL_ENSURE( aValues.getLength() == aPropNames.getLength(),
"<SwDefBulletConfig::SwDefBulletConfig()> - GetProperties failed");