From 5f3360957009b5cf05a592443df61a37536a9f1c Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Thu, 7 Apr 2016 20:16:26 +0200 Subject: SfxTabDialog: rename members missing their prefixes Change-Id: I6c739d4c64fb0b460e993f2a326a0acfec98b1c7 Reviewed-on: https://gerrit.libreoffice.org/23902 Tested-by: Jenkins Reviewed-by: Miklos Vajna --- include/sfx2/tabdlg.hxx | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'include') diff --git a/include/sfx2/tabdlg.hxx b/include/sfx2/tabdlg.hxx index c4397fcc1e95..382c250d933a 100644 --- a/include/sfx2/tabdlg.hxx +++ b/include/sfx2/tabdlg.hxx @@ -78,13 +78,13 @@ friend class SfxTabDialogController; bool m_bOwnsResetBtn; bool m_bOwnsBaseFmtBtn; - SfxItemSet* pSet; - SfxItemSet* pOutSet; - TabDlg_Impl* pImpl; - sal_uInt16* pRanges; - sal_uInt16 nAppPageId; - bool bItemsReset; - bool bStandardPushed; + SfxItemSet* m_pSet; + SfxItemSet* m_pOutSet; + TabDlg_Impl* m_pImpl; + sal_uInt16* m_pRanges; + sal_uInt16 m_nAppPageId; + bool m_bItemsReset; + bool m_bStandardPushed; DECL_DLLPRIVATE_LINK_TYPED(ActivatePageHdl, TabControl*, void ); DECL_DLLPRIVATE_LINK_TYPED(DeactivatePageHdl, TabControl*, bool ); @@ -104,7 +104,7 @@ protected: virtual void PageCreated( sal_uInt16 nId, SfxTabPage &rPage ); VclPtr m_pActionArea; - SfxItemSet* pExampleSet; + SfxItemSet* m_pExampleSet; SfxItemSet* GetInputSetImpl(); SfxTabPage* GetTabPage( sal_uInt16 nPageId ) const; @@ -146,11 +146,11 @@ public: void SetCurPageId(sal_uInt16 nId) { - nAppPageId = nId; + m_nAppPageId = nId; } void SetCurPageId(const OString& rName) { - nAppPageId = m_pTabCtrl->GetPageId(rName); + m_nAppPageId = m_pTabCtrl->GetPageId(rName); } sal_uInt16 GetCurPageId() const { @@ -172,7 +172,7 @@ public: // may provide local slots converted by Map const sal_uInt16* GetInputRanges( const SfxItemPool& ); void SetInputSet( const SfxItemSet* pInSet ); - const SfxItemSet* GetOutputItemSet() const { return pOutSet; } + const SfxItemSet* GetOutputItemSet() const { return m_pOutSet; } const PushButton& GetOKButton() const { return *m_pOKBtn; } PushButton& GetOKButton() { return *m_pOKBtn; } @@ -188,8 +188,8 @@ public: void StartExecuteModal( const Link& rEndDialogHdl ) override; void Start(); - const SfxItemSet* GetExampleSet() const { return pExampleSet; } - SfxItemSet* GetExampleSet() { return pExampleSet; } + const SfxItemSet* GetExampleSet() const { return m_pExampleSet; } + SfxItemSet* GetExampleSet() { return m_pExampleSet; } void SetApplyHandler(const Link& _rHdl); -- cgit