summaryrefslogtreecommitdiff
path: root/svl/source/items/itemset.cxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-01-28 19:05:59 +0100
committerMichael Stahl <mstahl@redhat.com>2013-01-28 19:12:15 +0100
commit9ad661e5740142a95893e91e4c138caee2abe7c2 (patch)
tree5dd171947d22d245bd75aa8bed59dcb92fefbc94 /svl/source/items/itemset.cxx
parent4651402a5399e00f62311bb3fe545413b0818a2d (diff)
SfxPoolItem: fix annoying -Werror=shadow the hard way
... by properly prefixing the members. Change-Id: Idfdb93b19bf9fdd5309fb55d4e7e56da81ee822a
Diffstat (limited to 'svl/source/items/itemset.cxx')
-rw-r--r--svl/source/items/itemset.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/items/itemset.cxx b/svl/source/items/itemset.cxx
index 27f2a8d6dd08..dbe5140eaf83 100644
--- a/svl/source/items/itemset.cxx
+++ b/svl/source/items/itemset.cxx
@@ -417,7 +417,7 @@ sal_uInt16 SfxItemSet::ClearItem( sal_uInt16 nWhich )
// #i32448#
// Take care of disabled items, too.
- if(!pItemToClear->nWhich)
+ if (!pItemToClear->m_nWhich)
{
// item is disabled, delete it
delete pItemToClear;