summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2013-12-19 18:31:17 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2013-12-19 18:36:38 +0100
commite111aa0c20c2e88d13164c025359982fc6d0bd18 (patch)
tree99c6adddb28dd1ad06256d8ca40a725c24617d60 /svl
parent2dde51e17288e7fecd4fad0d9a69fffc465f536b (diff)
svl: whitespace fixes in grabbagitem
Change-Id: I363e8c0f1a51a18bf0ad0ac4f931107137fd1c58
Diffstat (limited to 'svl')
-rw-r--r--svl/source/items/grabbagitem.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svl/source/items/grabbagitem.cxx b/svl/source/items/grabbagitem.cxx
index 23ab2bd06718..1c6072055e2a 100644
--- a/svl/source/items/grabbagitem.cxx
+++ b/svl/source/items/grabbagitem.cxx
@@ -25,8 +25,8 @@ SfxGrabBagItem::SfxGrabBagItem()
{
}
-SfxGrabBagItem::SfxGrabBagItem(sal_uInt16 nWhich, const std::map<OUString, uno::Any> *pMap) :
- SfxPoolItem( nWhich )
+SfxGrabBagItem::SfxGrabBagItem(sal_uInt16 nWhich, const std::map<OUString, uno::Any>* pMap) :
+ SfxPoolItem(nWhich)
{
if (pMap)
m_aMap = *pMap;
@@ -59,7 +59,7 @@ int SfxGrabBagItem::operator==(const SfxPoolItem& rItem) const
return m_aMap == pItem->m_aMap;
}
-SfxPoolItem* SfxGrabBagItem::Clone(SfxItemPool * /*pPool*/) const
+SfxPoolItem* SfxGrabBagItem::Clone(SfxItemPool* /*pPool*/) const
{
return new SfxGrabBagItem(*this);
}
@@ -67,7 +67,7 @@ SfxPoolItem* SfxGrabBagItem::Clone(SfxItemPool * /*pPool*/) const
bool SfxGrabBagItem::PutValue(const uno::Any& rVal, sal_uInt8 /*nMemberId*/)
{
uno::Sequence<beans::PropertyValue> aValue;
- if ( rVal >>= aValue )
+ if (rVal >>= aValue)
{
m_aMap.clear();
comphelper::OSequenceIterator<beans::PropertyValue> i(aValue);