summaryrefslogtreecommitdiff
path: root/sw/source
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2016-04-07 20:16:26 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-04-08 07:11:34 +0000
commit5f3360957009b5cf05a592443df61a37536a9f1c (patch)
treefd4228bc249a187d505f782fc966b7e46fa89f5e /sw/source
parent753c474b199a9c12f182c89c487133f9fa88e352 (diff)
SfxTabDialog: rename members missing their prefixes
Change-Id: I6c739d4c64fb0b460e993f2a326a0acfec98b1c7 Reviewed-on: https://gerrit.libreoffice.org/23902 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'sw/source')
-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;
}