summaryrefslogtreecommitdiff
path: root/sw/source/uibase/inc
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2022-10-10 08:56:38 +0200
committerMiklos Vajna <vmiklos@collabora.com>2022-10-10 11:55:35 +0200
commit82c6e059c2ad864c943087704fd95fa72fc2d949 (patch)
tree09aef3663d0589f3d7a509540c8f950a5d560160 /sw/source/uibase/inc
parent7f231cde1b54f73f2d1d9e916e4721fffa48472b (diff)
sw: prefix members of SwOutlineTabDialog, SwSplitTableDlg, ...
... SwTOXEntryTabPage and SwTOXSelectTabPage See tdf#94879 for motivation. Change-Id: Iecc48926c7c8dbde8a87c991edc717d04cc19332 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141150 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/source/uibase/inc')
-rw-r--r--sw/source/uibase/inc/outline.hxx14
-rw-r--r--sw/source/uibase/inc/splittbl.hxx2
-rw-r--r--sw/source/uibase/inc/swuicnttab.hxx26
3 files changed, 21 insertions, 21 deletions
diff --git a/sw/source/uibase/inc/outline.hxx b/sw/source/uibase/inc/outline.hxx
index 1b1d76ccccd9..8e948c8de95b 100644
--- a/sw/source/uibase/inc/outline.hxx
+++ b/sw/source/uibase/inc/outline.hxx
@@ -34,13 +34,13 @@ class SwOutlineTabDialog final : public SfxTabDialogController
{
static sal_uInt16 nNumLevel;
- OUString aCollNames[MAXLEVEL];
+ OUString m_aCollNames[MAXLEVEL];
- SwWrtShell& rWrtSh;
- std::unique_ptr<SwNumRule> xNumRule;
- SwChapterNumRules* pChapterNumRules;
+ SwWrtShell& m_rWrtSh;
+ std::unique_ptr<SwNumRule> m_xNumRule;
+ SwChapterNumRules* m_pChapterNumRules;
- bool bModified : 1;
+ bool m_bModified : 1;
std::unique_ptr<weld::MenuButton> m_xMenuButton;
@@ -55,9 +55,9 @@ public:
SwOutlineTabDialog(weld::Window* pParent, const SfxItemSet* pSwItemSet, SwWrtShell &);
virtual ~SwOutlineTabDialog() override;
- SwNumRule* GetNumRule() { return xNumRule.get(); }
+ SwNumRule* GetNumRule() { return m_xNumRule.get(); }
sal_uInt16 GetLevel(std::u16string_view rFormatName) const;
- OUString* GetCollNames() {return aCollNames;}
+ OUString* GetCollNames() {return m_aCollNames;}
static sal_uInt16 GetActNumLevel() {return nNumLevel;}
static void SetActNumLevel(sal_uInt16 nSet) {nNumLevel = nSet;}
diff --git a/sw/source/uibase/inc/splittbl.hxx b/sw/source/uibase/inc/splittbl.hxx
index 99e61f7d4075..8c8891c1df1b 100644
--- a/sw/source/uibase/inc/splittbl.hxx
+++ b/sw/source/uibase/inc/splittbl.hxx
@@ -33,7 +33,7 @@ private:
std::unique_ptr<weld::RadioButton> m_xBoxAttrCopyNoParaRB;
std::unique_ptr<weld::RadioButton> m_xBorderCopyRB;
- SwWrtShell& rShell;
+ SwWrtShell& m_rShell;
SplitTable_HeadlineOption m_nSplit;
void Apply();
diff --git a/sw/source/uibase/inc/swuicnttab.hxx b/sw/source/uibase/inc/swuicnttab.hxx
index 359e58dc62eb..12f3888e2980 100644
--- a/sw/source/uibase/inc/swuicnttab.hxx
+++ b/sw/source/uibase/inc/swuicnttab.hxx
@@ -117,15 +117,15 @@ public:
class SwTOXSelectTabPage final : public SfxTabPage
{
- std::unique_ptr<IndexEntryResource> pIndexRes;
+ std::unique_ptr<IndexEntryResource> m_pIndexRes;
- OUString aStyleArr[MAXLEVEL];
- OUString sAutoMarkURL;
- OUString sAutoMarkType;
- OUString sAddStyleUser;
- OUString sAddStyleContent;
+ OUString m_aStyleArr[MAXLEVEL];
+ OUString m_sAutoMarkURL;
+ OUString m_sAutoMarkType;
+ OUString m_sAddStyleUser;
+ OUString m_sAddStyleContent;
- std::unique_ptr<const IndexEntrySupplierWrapper> pIndexEntryWrapper;
+ std::unique_ptr<const IndexEntrySupplierWrapper> m_pIndexEntryWrapper;
bool m_bWaitingInitialSettings;
@@ -304,15 +304,15 @@ private:
class SwTOXEntryTabPage final : public SfxTabPage
{
- OUString sDelimStr;
- OUString sLevelStr;
- OUString sAuthTypeStr;
+ OUString m_sDelimStr;
+ OUString m_sLevelStr;
+ OUString m_sAuthTypeStr;
- OUString sNoCharStyle;
+ OUString m_sNoCharStyle;
SwForm* m_pCurrentForm;
- CurTOXType aLastTOXType;
- bool bInLevelHdl;
+ CurTOXType m_aLastTOXType;
+ bool m_bInLevelHdl;
std::unique_ptr<weld::Label> m_xTypeFT;
std::unique_ptr<weld::Label> m_xLevelFT;