summaryrefslogtreecommitdiff
path: root/sw/source/uibase/inc
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-11-11 08:56:22 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-11-11 08:56:55 +0100
commitfdeaa040059647f7bd1d103f2971e945bbe18659 (patch)
tree239385ca8b540f4efaf9a055ec55db9e59405d01 /sw/source/uibase/inc
parentcd43da04094dad5aa545fef7ac1e13d1096a23ce (diff)
sw: prefix members of SwFrmAddPage
Change-Id: Id4a5a5794ff03a88922df7fd1dcba75ed601dd59
Diffstat (limited to 'sw/source/uibase/inc')
-rw-r--r--sw/source/uibase/inc/frmpage.hxx54
1 files changed, 27 insertions, 27 deletions
diff --git a/sw/source/uibase/inc/frmpage.hxx b/sw/source/uibase/inc/frmpage.hxx
index 2f093afe5936..a90580c0c924 100644
--- a/sw/source/uibase/inc/frmpage.hxx
+++ b/sw/source/uibase/inc/frmpage.hxx
@@ -273,36 +273,36 @@ public:
class SwFrmAddPage : public SfxTabPage
{
- VclPtr<VclContainer> pNameFrame;
- VclPtr<FixedText> pNameFT;
- VclPtr<Edit> pNameED;
- VclPtr<FixedText> pAltNameFT;
- VclPtr<Edit> pAltNameED;
- VclPtr<FixedText> pPrevFT;
- VclPtr<ListBox> pPrevLB;
- VclPtr<FixedText> pNextFT;
- VclPtr<ListBox> pNextLB;
-
- VclPtr<VclContainer> pProtectFrame;
- VclPtr<CheckBox> pProtectContentCB;
- VclPtr<CheckBox> pProtectFrameCB;
- VclPtr<CheckBox> pProtectSizeCB;
+ VclPtr<VclContainer> m_pNameFrame;
+ VclPtr<FixedText> m_pNameFT;
+ VclPtr<Edit> m_pNameED;
+ VclPtr<FixedText> m_pAltNameFT;
+ VclPtr<Edit> m_pAltNameED;
+ VclPtr<FixedText> m_pPrevFT;
+ VclPtr<ListBox> m_pPrevLB;
+ VclPtr<FixedText> m_pNextFT;
+ VclPtr<ListBox> m_pNextLB;
+
+ VclPtr<VclContainer> m_pProtectFrame;
+ VclPtr<CheckBox> m_pProtectContentCB;
+ VclPtr<CheckBox> m_pProtectFrameCB;
+ VclPtr<CheckBox> m_pProtectSizeCB;
VclPtr<VclContainer> m_pContentAlignFrame;
VclPtr<ListBox> m_pVertAlignLB;
- VclPtr<VclContainer> pPropertiesFrame;
- VclPtr<CheckBox> pEditInReadonlyCB;
- VclPtr<CheckBox> pPrintFrameCB;
- VclPtr<FixedText> pTextFlowFT;
- VclPtr<ListBox> pTextFlowLB;
+ VclPtr<VclContainer> m_pPropertiesFrame;
+ VclPtr<CheckBox> m_pEditInReadonlyCB;
+ VclPtr<CheckBox> m_pPrintFrameCB;
+ VclPtr<FixedText> m_pTextFlowFT;
+ VclPtr<ListBox> m_pTextFlowLB;
- SwWrtShell* pWrtSh;
+ SwWrtShell* m_pWrtSh;
- OUString sDlgType;
- bool bHtmlMode;
- bool bFormat;
- bool bNew;
+ OUString m_sDlgType;
+ bool m_bHtmlMode;
+ bool m_bFormat;
+ bool m_bNew;
DECL_LINK_TYPED(EditModifyHdl, Edit&, void);
DECL_LINK_TYPED(ChainModifyHdl, ListBox&, void);
@@ -321,9 +321,9 @@ public:
virtual void Reset(const SfxItemSet *rSet) override;
void SetFormatUsed(bool bFormat);
- void SetFrmType(const OUString &rType) { sDlgType = rType; }
- void SetNewFrame(bool bNewFrame) { bNew = bNewFrame; }
- void SetShell(SwWrtShell* pSh) { pWrtSh = pSh; }
+ void SetFrmType(const OUString &rType) { m_sDlgType = rType; }
+ void SetNewFrame(bool bNewFrame) { m_bNew = bNewFrame; }
+ void SetShell(SwWrtShell* pSh) { m_pWrtSh = pSh; }
};