diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-07-30 09:02:17 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-07-30 11:36:43 +0200 |
commit | 4219a1f8e44aaa44a0baf30af9ebdcbd709f0a56 (patch) | |
tree | 363d27ca380ce8a81ff4e34544477c5914776a65 /sw/inc | |
parent | 70bfdd828b01e9db0713b87645ffe39f3dc21c7e (diff) |
sw: prefix members of SwHyperlinkIter_Impl and SwInputField
Change-Id: I35bb9f6624a74c8351c094355434417790d6027d
Reviewed-on: https://gerrit.libreoffice.org/58301
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Tested-by: Jenkins
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/expfld.hxx | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/sw/inc/expfld.hxx b/sw/inc/expfld.hxx index ecdba62d7c9c..b438d80c9896 100644 --- a/sw/inc/expfld.hxx +++ b/sw/inc/expfld.hxx @@ -278,22 +278,22 @@ inline bool SwSetExpField::IsSequenceField() const class SwInputFieldType : public SwFieldType { - SwDoc* pDoc; + SwDoc* mpDoc; public: SwInputFieldType( SwDoc* pDoc ); virtual SwFieldType* Copy() const override; - SwDoc* GetDoc() const { return pDoc; } + SwDoc* GetDoc() const { return mpDoc; } }; class SW_DLLPUBLIC SwInputField : public SwField { - mutable OUString aContent; - OUString aPText; - OUString aHelp; - OUString aToolTip; - sal_uInt16 nSubType; + mutable OUString maContent; + OUString maPText; + OUString maHelp; + OUString maToolTip; + sal_uInt16 mnSubType; bool mbIsFormField; SwFormatField* mpFormatField; // attribute to which the <SwInputField> belongs to @@ -302,7 +302,7 @@ class SW_DLLPUBLIC SwInputField : public SwField virtual std::unique_ptr<SwField> Copy() const override; // Accessing Input Field's content - const OUString& getContent() const { return aContent;} + const OUString& getContent() const { return maContent;} public: /// Direct input via dialog; delete old value. @@ -366,9 +366,9 @@ public: bool BuildSortLst(); private: - SwEditShell* pSh; - std::unique_ptr<SetGetExpFields> pSrtLst; - std::set<const SwTextField*> aTmpLst; + SwEditShell* mpSh; + std::unique_ptr<SetGetExpFields> mpSrtLst; + std::set<const SwTextField*> maTmpLst; }; /// Implementation in tblcalc.cxx. |