summaryrefslogtreecommitdiff
path: root/sw/source/uibase/inc
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2022-03-07 08:21:20 +0100
committerMiklos Vajna <vmiklos@collabora.com>2022-03-07 09:06:52 +0100
commit418cb3c844da2e7094fa6b63b33d8c938897203c (patch)
treee69c4915a0beb81b60d7bed0bb14dc01305fe965 /sw/source/uibase/inc
parent66a9795f27fda887d9f66d0d8bb196fd636fe452 (diff)
sw: prefix members of DocxAttributeOutput, SwDBTreeList, ...
... SwTOXBaseContent and SwURLFieldContent See tdf#94879 for motivation. Change-Id: I6481279dcb680ebba6392bbde3f4736dd270e52a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131092 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/source/uibase/inc')
-rw-r--r--sw/source/uibase/inc/content.hxx16
-rw-r--r--sw/source/uibase/inc/dbtree.hxx6
2 files changed, 11 insertions, 11 deletions
diff --git a/sw/source/uibase/inc/content.hxx b/sw/source/uibase/inc/content.hxx
index dd18d71637ca..0a4e18013be4 100644
--- a/sw/source/uibase/inc/content.hxx
+++ b/sw/source/uibase/inc/content.hxx
@@ -72,8 +72,8 @@ class SwRegionContent final : public SwContent
class SwURLFieldContent final : public SwContent
{
- OUString sURL;
- const SwTextINetFormat* pINetAttr;
+ OUString m_sURL;
+ const SwTextINetFormat* m_pINetAttr;
public:
SwURLFieldContent( const SwContentType* pCnt,
@@ -81,12 +81,12 @@ public:
const OUString& rURL,
const SwTextINetFormat* pAttr,
tools::Long nYPos )
- : SwContent( pCnt, rName, nYPos ), sURL( rURL ), pINetAttr( pAttr )
+ : SwContent( pCnt, rName, nYPos ), m_sURL( rURL ), m_pINetAttr( pAttr )
{}
virtual bool IsProtect() const override;
- const OUString& GetURL() const { return sURL; }
- const SwTextINetFormat* GetINetAttr() const { return pINetAttr; }
+ const OUString& GetURL() const { return m_sURL; }
+ const SwTextINetFormat* GetINetAttr() const { return m_pINetAttr; }
};
class SwTextFieldContent final : public SwContent
@@ -150,14 +150,14 @@ public:
class SwTOXBaseContent final : public SwContent
{
- const SwTOXBase* pBase;
+ const SwTOXBase* m_pBase;
public:
SwTOXBaseContent(const SwContentType* pCnt, const OUString& rName, tools::Long nYPos, const SwTOXBase& rBase)
- : SwContent( pCnt, rName, nYPos ), pBase(&rBase)
+ : SwContent( pCnt, rName, nYPos ), m_pBase(&rBase)
{}
virtual ~SwTOXBaseContent() override;
- const SwTOXBase* GetTOXBase() const {return pBase;}
+ const SwTOXBase* GetTOXBase() const {return m_pBase;}
};
/**
diff --git a/sw/source/uibase/inc/dbtree.hxx b/sw/source/uibase/inc/dbtree.hxx
index 651654bb9843..c6806cdfed8a 100644
--- a/sw/source/uibase/inc/dbtree.hxx
+++ b/sw/source/uibase/inc/dbtree.hxx
@@ -29,10 +29,10 @@ class SwWrtShell;
class SW_DLLPUBLIC SwDBTreeList
{
- bool bInitialized;
- bool bShowColumns;
+ bool m_bInitialized;
+ bool m_bShowColumns;
- rtl::Reference<SwDBTreeList_Impl> pImpl;
+ rtl::Reference<SwDBTreeList_Impl> m_pImpl;
std::unique_ptr<weld::TreeView> m_xTreeView;
std::unique_ptr<weld::TreeIter> m_xScratchIter;