summaryrefslogtreecommitdiff
path: root/svl/source/items/grabbagitem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/items/grabbagitem.cxx')
-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 082c42207d9f..6d69fcd9f5ac 100644
--- a/svl/source/items/grabbagitem.cxx
+++ b/svl/source/items/grabbagitem.cxx
@@ -28,7 +28,7 @@ SfxGrabBagItem::~SfxGrabBagItem() = default;
bool SfxGrabBagItem::operator==(const SfxPoolItem& rItem) const
{
- const SfxGrabBagItem* pItem = static_cast<const SfxGrabBagItem*>(&rItem);
+ auto pItem = static_cast<const SfxGrabBagItem*>(&rItem);
return m_aMap == pItem->m_aMap;
}
>2015-03-24loplugin:constantfunction: frameworkNoel Grandin 2015-03-11utl::ConfigItem::Commit() should call ClearModified()Michael Stahl 2015-01-29callcatcher: large newly detected unused methods post de-virtualizationCaolán McNamara 2014-12-18framework: Use appropriate OUString functions on string constantsStephan Bergmann 2014-10-02loplugin: cstylecastNoel Grandin