diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-07-12 22:09:50 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-07-13 09:07:45 +0200 |
commit | 23793a08b75757c1fe764e3e03e09fe08b72413d (patch) | |
tree | 738d6256fe9cdc02b204f0265bd0bdacf28de2c8 /svl | |
parent | 41e2cbc157ce70ea4db67be1a77f61810089b840 (diff) |
sw, writerfilter: various small cleanups
Different parameter name in declaration and definition, repeating type
name inside the very same line when initializing from a cast, and so on.
Change-Id: I52dc29ed845fb1a780dfab586bfd67db0d4a9e54
Reviewed-on: https://gerrit.libreoffice.org/57370
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/items/grabbagitem.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/items/grabbagitem.cxx b/svl/source/items/grabbagitem.cxx index b05b0c7b5f10..b7693dcd68bf 100644 --- a/svl/source/items/grabbagitem.cxx +++ b/svl/source/items/grabbagitem.cxx @@ -47,7 +47,7 @@ bool SfxGrabBagItem::PutValue(const uno::Any& rVal, sal_uInt8 /*nMemberId*/) comphelper::OSequenceIterator<beans::PropertyValue> i(aValue); while (i.hasMoreElements()) { - beans::PropertyValue aPropertyValue = i.nextElement().get<beans::PropertyValue>(); + auto aPropertyValue = i.nextElement().get<beans::PropertyValue>(); m_aMap[aPropertyValue.Name] = aPropertyValue.Value; } return true; |