summaryrefslogtreecommitdiff
path: root/svx/source/sdr
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/sdr')
-rw-r--r--svx/source/sdr/properties/attributeproperties.cxx2
-rw-r--r--svx/source/sdr/properties/defaultproperties.cxx2
-rw-r--r--svx/source/sdr/properties/e3dsceneproperties.cxx2
-rw-r--r--svx/source/sdr/properties/groupproperties.cxx2
-rw-r--r--svx/source/sdr/properties/itemsettools.cxx2
5 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/sdr/properties/attributeproperties.cxx b/svx/source/sdr/properties/attributeproperties.cxx
index b7407d641d44..a6bcaf40da65 100644
--- a/svx/source/sdr/properties/attributeproperties.cxx
+++ b/svx/source/sdr/properties/attributeproperties.cxx
@@ -53,7 +53,7 @@ namespace sdr::properties
while(nWhich)
{
- if(SfxItemState::SET == rStyle.GetItemState(nWhich))
+ if(SfxItemState::SET == aIter.GetItemState())
{
mxItemSet->ClearItem(nWhich);
}
diff --git a/svx/source/sdr/properties/defaultproperties.cxx b/svx/source/sdr/properties/defaultproperties.cxx
index 91a2edbfebc0..fa52924585c5 100644
--- a/svx/source/sdr/properties/defaultproperties.cxx
+++ b/svx/source/sdr/properties/defaultproperties.cxx
@@ -178,7 +178,7 @@ namespace sdr::properties
while(nWhich)
{
const SfxPoolItem* pPoolItem;
- if(SfxItemState::SET == rSet.GetItemState(nWhich, false, &pPoolItem))
+ if(SfxItemState::SET == aWhichIter.GetItemState(false, &pPoolItem))
{
if(AllowItemChange(nWhich, pPoolItem))
{
diff --git a/svx/source/sdr/properties/e3dsceneproperties.cxx b/svx/source/sdr/properties/e3dsceneproperties.cxx
index a0887cc15aee..c156db33e029 100644
--- a/svx/source/sdr/properties/e3dsceneproperties.cxx
+++ b/svx/source/sdr/properties/e3dsceneproperties.cxx
@@ -85,7 +85,7 @@ namespace sdr::properties
// and always equal.
if(nWhich <= SDRATTR_3DSCENE_FIRST || nWhich >= SDRATTR_3DSCENE_LAST)
{
- if(SfxItemState::DONTCARE == rSet.GetItemState(nWhich, false))
+ if(SfxItemState::DONTCARE == aIter.GetItemState(false))
{
mxItemSet->InvalidateItem(nWhich);
}
diff --git a/svx/source/sdr/properties/groupproperties.cxx b/svx/source/sdr/properties/groupproperties.cxx
index 00f689515c4c..6ec522aa36b9 100644
--- a/svx/source/sdr/properties/groupproperties.cxx
+++ b/svx/source/sdr/properties/groupproperties.cxx
@@ -77,7 +77,7 @@ namespace sdr::properties
while(nWhich)
{
- if(SfxItemState::DONTCARE == rSet.GetItemState(nWhich, false))
+ if(SfxItemState::DONTCARE == aIter.GetItemState(false))
{
mxItemSet->InvalidateItem(nWhich);
}
diff --git a/svx/source/sdr/properties/itemsettools.cxx b/svx/source/sdr/properties/itemsettools.cxx
index 3bc0deee38a7..11431d367d12 100644
--- a/svx/source/sdr/properties/itemsettools.cxx
+++ b/svx/source/sdr/properties/itemsettools.cxx
@@ -70,7 +70,7 @@ namespace sdr::properties
while(nWhich)
{
- if(SfxItemState::SET == rSet.GetItemState(nWhich, false, &pItem))
+ if(SfxItemState::SET == aIter.GetItemState(false, &pItem))
{
if(pItem->HasMetrics())
{