summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
Diffstat (limited to 'sw')
-rw-r--r--sw/source/ui/envelp/label1.cxx4
-rw-r--r--sw/source/ui/fmtui/tmpdlg.cxx2
-rw-r--r--sw/source/ui/misc/num.cxx2
3 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/ui/envelp/label1.cxx b/sw/source/ui/envelp/label1.cxx
index 395de1168ee0..9280d67e368e 100644
--- a/sw/source/ui/envelp/label1.cxx
+++ b/sw/source/ui/envelp/label1.cxx
@@ -162,8 +162,8 @@ SwLabDlg::SwLabDlg(vcl::Window* pParent, const SfxItemSet& rSet,
if ( !aMakes.empty() )
_ReplaceGroup( aMakes[nLstGroup] );
- if (pExampleSet)
- pExampleSet->Put(aItem);
+ if (m_pExampleSet)
+ m_pExampleSet->Put(aItem);
}
SwLabDlg::~SwLabDlg()
diff --git a/sw/source/ui/fmtui/tmpdlg.cxx b/sw/source/ui/fmtui/tmpdlg.cxx
index 2abc0d820384..3e53d6bfa2a6 100644
--- a/sw/source/ui/fmtui/tmpdlg.cxx
+++ b/sw/source/ui/fmtui/tmpdlg.cxx
@@ -334,7 +334,7 @@ short SwTemplateDlg::Ok()
if( RET_OK == nRet )
{
const SfxPoolItem *pOutItem, *pExItem;
- if( SfxItemState::SET == pExampleSet->GetItemState(
+ if( SfxItemState::SET == m_pExampleSet->GetItemState(
SID_ATTR_NUMBERING_RULE, false, &pExItem ) &&
( !GetOutputItemSet() ||
SfxItemState::SET != GetOutputItemSet()->GetItemState(
diff --git a/sw/source/ui/misc/num.cxx b/sw/source/ui/misc/num.cxx
index ff67892ed4f3..50db6dc257f5 100644
--- a/sw/source/ui/misc/num.cxx
+++ b/sw/source/ui/misc/num.cxx
@@ -1025,7 +1025,7 @@ void SwSvxNumBulletTabDialog::PageCreated(sal_uInt16 nPageId, SfxTabPage& rPage)
short SwSvxNumBulletTabDialog::Ok()
{
short nRet = SfxTabDialog::Ok();
- pExampleSet->ClearItem(SID_PARAM_NUM_PRESET);
+ m_pExampleSet->ClearItem(SID_PARAM_NUM_PRESET);
return nRet;
}