summaryrefslogtreecommitdiffstats
path: root/svl
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2018-07-12 22:09:50 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2018-07-13 09:07:45 +0200
commit23793a08b75757c1fe764e3e03e09fe08b72413d (patch)
tree738d6256fe9cdc02b204f0265bd0bdacf28de2c8 /svl
parentloplugin:useuniqueptr in SwUndoDelete (diff)
downloadcore-23793a08b75757c1fe764e3e03e09fe08b72413d.tar.gz
core-23793a08b75757c1fe764e3e03e09fe08b72413d.zip
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.cxx2
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;