summaryrefslogtreecommitdiff
path: root/sw/source/uibase/inc/fldmgr.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2017-11-20 09:33:58 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2017-11-20 10:48:03 +0100
commit61b7f21f7f9e9d2516342cfdb23763d15acd4f79 (patch)
treed3585de00bbaa2217a31e43833868f874b369826 /sw/source/uibase/inc/fldmgr.hxx
parent5cfbc855141a7f5c5583aadc8ef8541ed582d139 (diff)
sw: prefix members of SwFieldMgr
Change-Id: I330ec974d1f469f4068bf0fc4dba33c99c5894db Reviewed-on: https://gerrit.libreoffice.org/44942 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'sw/source/uibase/inc/fldmgr.hxx')
-rw-r--r--sw/source/uibase/inc/fldmgr.hxx32
1 files changed, 16 insertions, 16 deletions
diff --git a/sw/source/uibase/inc/fldmgr.hxx b/sw/source/uibase/inc/fldmgr.hxx
index ef9d0ac2f832..21153ab96823 100644
--- a/sw/source/uibase/inc/fldmgr.hxx
+++ b/sw/source/uibase/inc/fldmgr.hxx
@@ -95,21 +95,21 @@ struct SwInsertField_Data
class SW_DLLPUBLIC SwFieldMgr
{
private:
- SwField* pCurField;
- SwWrtShell* pWrtShell; // can be ZERO too!
- OUString aCurPar1;
- OUString aCurPar2;
- OUString sCurFrame;
+ SwField* m_pCurField;
+ SwWrtShell* m_pWrtShell; // can be ZERO too!
+ OUString m_aCurPar1;
+ OUString m_aCurPar2;
+ OUString m_sCurFrame;
- OUString sMacroPath;
- OUString sMacroName;
+ OUString m_sMacroPath;
+ OUString m_sMacroName;
- sal_uInt32 nCurFormat;
- bool bEvalExp;
+ sal_uInt32 m_nCurFormat;
+ bool m_bEvalExp;
SAL_DLLPRIVATE LanguageType GetCurrLanguage() const;
- css::uno::Reference<css::text::XNumberingTypeInfo> xNumberingInfo;
+ css::uno::Reference<css::text::XNumberingTypeInfo> m_xNumberingInfo;
SAL_DLLPRIVATE css::uno::Reference<css::text::XNumberingTypeInfo> const & GetNumberingInfo()const;
public:
@@ -117,7 +117,7 @@ public:
~SwFieldMgr();
void SetWrtShell( SwWrtShell* pShell )
- { pWrtShell = pShell; }
+ { m_pWrtShell = pShell; }
// insert field using TypeID (TYP_ ...)
bool InsertField( const SwInsertField_Data& rData );
@@ -128,8 +128,8 @@ public:
const OUString& rPar2,
SwField * _pField = nullptr);
- const OUString& GetCurFieldPar1() const { return aCurPar1; }
- const OUString& GetCurFieldPar2() const { return aCurPar2; }
+ const OUString& GetCurFieldPar1() const { return m_aCurPar1; }
+ const OUString& GetCurFieldPar2() const { return m_aCurPar2; }
// determine a field
SwField* GetCurField();
@@ -138,8 +138,8 @@ public:
bool ChooseMacro();
void SetMacroPath(const OUString& rPath);
- const OUString& GetMacroPath() const { return sMacroPath; }
- const OUString& GetMacroName() const { return sMacroName; }
+ const OUString& GetMacroPath() const { return m_sMacroPath; }
+ const OUString& GetMacroName() const { return m_sMacroName; }
// previous and next of the same type
bool GoNextPrev( bool bNext = true, SwFieldType* pTyp = nullptr );
@@ -192,7 +192,7 @@ public:
};
inline void SwFieldMgr::SetEvalExpFields(bool bEval)
- { bEvalExp = bEval; }
+ { m_bEvalExp = bEval; }
#endif