summaryrefslogtreecommitdiff
path: root/sw/source/ui/dialog
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/dialog')
-rw-r--r--sw/source/ui/dialog/docstdlg.cxx2
-rw-r--r--sw/source/ui/dialog/uiregionsw.cxx12
2 files changed, 7 insertions, 7 deletions
diff --git a/sw/source/ui/dialog/docstdlg.cxx b/sw/source/ui/dialog/docstdlg.cxx
index 8dc93ddb9512..4d237209aeef 100644
--- a/sw/source/ui/dialog/docstdlg.cxx
+++ b/sw/source/ui/dialog/docstdlg.cxx
@@ -77,7 +77,7 @@ SwDocStatPage::SwDocStatPage(Window *pParent, const SfxItemSet &rSet)
}
// Description: fill ItemSet when changed
-bool SwDocStatPage::FillItemSet(SfxItemSet & /*rSet*/)
+bool SwDocStatPage::FillItemSet(SfxItemSet * /*rSet*/)
{
return false;
}
diff --git a/sw/source/ui/dialog/uiregionsw.cxx b/sw/source/ui/dialog/uiregionsw.cxx
index a4f4fd0f1215..a43d048545aa 100644
--- a/sw/source/ui/dialog/uiregionsw.cxx
+++ b/sw/source/ui/dialog/uiregionsw.cxx
@@ -1572,7 +1572,7 @@ void SwInsertSectionTabPage::SetWrtShell(SwWrtShell& rSh)
}
}
-bool SwInsertSectionTabPage::FillItemSet( SfxItemSet& )
+bool SwInsertSectionTabPage::FillItemSet( SfxItemSet* )
{
SwSectionData aSection(CONTENT_SECTION, m_pCurName->GetText());
aSection.SetCondition(m_pConditionED->GetText());
@@ -1837,7 +1837,7 @@ SwSectionFtnEndTabPage::~SwSectionFtnEndTabPage()
{
}
-bool SwSectionFtnEndTabPage::FillItemSet( SfxItemSet& rSet )
+bool SwSectionFtnEndTabPage::FillItemSet( SfxItemSet* rSet )
{
SwFmtFtnAtTxtEnd aFtn( pFtnNtAtTextEndCB->IsChecked()
? ( pFtnNtNumCB->IsChecked()
@@ -1881,8 +1881,8 @@ bool SwSectionFtnEndTabPage::FillItemSet( SfxItemSet& rSet )
// no break;
}
- rSet.Put( aFtn );
- rSet.Put( aEnd );
+ rSet->Put( aFtn );
+ rSet->Put( aEnd );
return true;
}
@@ -2098,7 +2098,7 @@ SwSectionIndentTabPage::~SwSectionIndentTabPage()
{
}
-bool SwSectionIndentTabPage::FillItemSet( SfxItemSet& rSet)
+bool SwSectionIndentTabPage::FillItemSet( SfxItemSet* rSet)
{
if(m_pBeforeMF->IsValueModified() ||
m_pAfterMF->IsValueModified())
@@ -2106,7 +2106,7 @@ bool SwSectionIndentTabPage::FillItemSet( SfxItemSet& rSet)
SvxLRSpaceItem aLRSpace(
static_cast< long >(m_pBeforeMF->Denormalize(m_pBeforeMF->GetValue(FUNIT_TWIP))) ,
static_cast< long >(m_pAfterMF->Denormalize(m_pAfterMF->GetValue(FUNIT_TWIP))), 0, 0, RES_LR_SPACE);
- rSet.Put(aLRSpace);
+ rSet->Put(aLRSpace);
}
return true;
}