summaryrefslogtreecommitdiff
path: root/sw/source/ui/misc/pgfnote.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/misc/pgfnote.cxx')
-rw-r--r--sw/source/ui/misc/pgfnote.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/ui/misc/pgfnote.cxx b/sw/source/ui/misc/pgfnote.cxx
index 29704905edb6..600905f847c9 100644
--- a/sw/source/ui/misc/pgfnote.cxx
+++ b/sw/source/ui/misc/pgfnote.cxx
@@ -254,7 +254,7 @@ void SwFootNotePage::Reset(const SfxItemSet &rSet)
}
// stuff attributes into the set, when OK
-bool SwFootNotePage::FillItemSet(SfxItemSet &rSet)
+bool SwFootNotePage::FillItemSet(SfxItemSet *rSet)
{
SwPageFtnInfoItem aItem((const SwPageFtnInfoItem&)GetItemSet().Get(FN_PARAM_FTN_INFO));
@@ -294,9 +294,9 @@ bool SwFootNotePage::FillItemSet(SfxItemSet &rSet)
rFtnInfo.SetWidth(Fraction( static_cast< long >(m_pLineLengthEdit->GetValue()), 100));
const SfxPoolItem* pOldItem;
- if(0 == (pOldItem = GetOldItem( rSet, FN_PARAM_FTN_INFO )) ||
+ if(0 == (pOldItem = GetOldItem( *rSet, FN_PARAM_FTN_INFO )) ||
aItem != *pOldItem )
- rSet.Put(aItem);
+ rSet->Put(aItem);
return true;
}
@@ -352,7 +352,7 @@ void SwFootNotePage::ActivatePage(const SfxItemSet& rSet)
int SwFootNotePage::DeactivatePage( SfxItemSet* _pSet)
{
if(_pSet)
- FillItemSet(*_pSet);
+ FillItemSet(_pSet);
return sal_True;
}