sw/source/ui/envelp/mailmrge.cxx | 18 +++++----- sw/source/ui/fmtui/tmpdlg.cxx | 66 +++++++++++++++++++------------------- sw/source/ui/misc/num.cxx | 8 ++-- sw/source/ui/table/tabledlg.cxx | 6 +-- sw/source/uibase/inc/num.hxx | 2 - sw/source/uibase/inc/tabledlg.hxx | 2 - sw/source/uibase/inc/tmpdlg.hxx | 8 ++-- 7 files changed, 55 insertions(+), 55 deletions(-)
New commits: commit c308ed9fc6c2a223a51fd585e6e0a7d7f6c83352 Author: Miklos Vajna <vmik...@collabora.com> AuthorDate: Mon Oct 17 08:05:30 2022 +0200 Commit: Miklos Vajna <vmik...@collabora.com> CommitDate: Mon Oct 17 10:40:43 2022 +0200 sw: prefix members of SwSvxNumBulletTabDialog, SwTableTabDlg, ... SwTemplateDlgController and SwXSelChgLstnr_Impl See tdf#94879 for motivation. Change-Id: I84d1ba98798a375f8bd138276b5bff45b005d6fa Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141438 Reviewed-by: Miklos Vajna <vmik...@collabora.com> Tested-by: Jenkins diff --git a/sw/source/ui/envelp/mailmrge.cxx b/sw/source/ui/envelp/mailmrge.cxx index 154a9c70e4a8..f596caca73e5 100644 --- a/sw/source/ui/envelp/mailmrge.cxx +++ b/sw/source/ui/envelp/mailmrge.cxx @@ -77,7 +77,7 @@ class SwXSelChgLstnr_Impl : public cppu::WeakImplHelper view::XSelectionChangeListener > { - SwMailMergeDlg& rParent; + SwMailMergeDlg& m_rParent; public: explicit SwXSelChgLstnr_Impl(SwMailMergeDlg& rParentDlg); @@ -86,23 +86,23 @@ public: }; SwXSelChgLstnr_Impl::SwXSelChgLstnr_Impl(SwMailMergeDlg& rParentDlg) : - rParent(rParentDlg) + m_rParent(rParentDlg) {} void SwXSelChgLstnr_Impl::selectionChanged( const EventObject& ) { //call the parent to enable selection mode Sequence <Any> aSelection; - if(rParent.m_pImpl->xSelSupp.is()) - rParent.m_pImpl->xSelSupp->getSelection() >>= aSelection; + if(m_rParent.m_pImpl->xSelSupp.is()) + m_rParent.m_pImpl->xSelSupp->getSelection() >>= aSelection; bool bEnable = aSelection.hasElements(); - rParent.m_xMarkedRB->set_sensitive(bEnable); + m_rParent.m_xMarkedRB->set_sensitive(bEnable); if(bEnable) - rParent.m_xMarkedRB->set_active(true); - else if(rParent.m_xMarkedRB->get_active()) { - rParent.m_xAllRB->set_active(true); - rParent.m_aSelection.realloc(0); + m_rParent.m_xMarkedRB->set_active(true); + else if(m_rParent.m_xMarkedRB->get_active()) { + m_rParent.m_xAllRB->set_active(true); + m_rParent.m_aSelection.realloc(0); } } diff --git a/sw/source/ui/fmtui/tmpdlg.cxx b/sw/source/ui/fmtui/tmpdlg.cxx index aa3c9e5eacf6..8ebf75129db7 100644 --- a/sw/source/ui/fmtui/tmpdlg.cxx +++ b/sw/source/ui/fmtui/tmpdlg.cxx @@ -71,11 +71,11 @@ SwTemplateDlgController::SwTemplateDlgController(weld::Window* pParent, OUString::number(static_cast<sal_uInt16>(nRegion)) + ".ui", "TemplateDialog" + OString::number(static_cast<sal_uInt16>(nRegion)), rBase) - , nType(nRegion) - , pWrtShell(pActShell) - , bNewStyle(bNew) + , m_nType(nRegion) + , m_pWrtShell(pActShell) + , m_bNewStyle(bNew) { - nHtmlMode = ::GetHtmlMode(pWrtShell->GetView().GetDocShell()); + m_nHtmlMode = ::GetHtmlMode(m_pWrtShell->GetView().GetDocShell()); SfxAbstractDialogFactory* pFact = SfxAbstractDialogFactory::Create(); GetStandardButton()->set_label(SwResId(STR_STANDARD_LABEL)); @@ -102,7 +102,7 @@ SwTemplateDlgController::SwTemplateDlgController(weld::Window* pParent, AddTabPage("asianlayout", pFact->GetTabPageCreatorFunc( RID_SVXPAGE_CHAR_TWOLINES ), pFact->GetTabPageRangesFunc( RID_SVXPAGE_CHAR_TWOLINES )); AddTabPage("background", pFact->GetTabPageCreatorFunc( RID_SVXPAGE_BKG ), pFact->GetTabPageRangesFunc( RID_SVXPAGE_BKG )); AddTabPage("borders", pFact->GetTabPageCreatorFunc( RID_SVXPAGE_BORDER ), pFact->GetTabPageRangesFunc( RID_SVXPAGE_BORDER )); - if(nHtmlMode & HTMLMODE_ON || !SvtCJKOptions::IsDoubleLinesEnabled()) + if(m_nHtmlMode & HTMLMODE_ON || !SvtCJKOptions::IsDoubleLinesEnabled()) RemoveTabPage("asianlayout"); } break; @@ -140,11 +140,11 @@ SwTemplateDlgController::SwTemplateDlgController(weld::Window* pParent, AddTabPage("condition", SwCondCollPage::Create, SwCondCollPage::GetRanges ); - if( (!bNewStyle && RES_CONDTXTFMTCOLL != static_cast<SwDocStyleSheet&>(rBase).GetCollection()->Which()) - || nHtmlMode & HTMLMODE_ON ) + if( (!m_bNewStyle && RES_CONDTXTFMTCOLL != static_cast<SwDocStyleSheet&>(rBase).GetCollection()->Which()) + || m_nHtmlMode & HTMLMODE_ON ) RemoveTabPage("condition"); - if(nHtmlMode & HTMLMODE_ON) + if(m_nHtmlMode & HTMLMODE_ON) { if (!SvxHtmlOptions::IsPrintLayoutExtension()) RemoveTabPage("textflow"); @@ -152,7 +152,7 @@ SwTemplateDlgController::SwTemplateDlgController(weld::Window* pParent, RemoveTabPage("tabs"); RemoveTabPage("outline"); RemoveTabPage("asianlayout"); - if(!(nHtmlMode & HTMLMODE_FULL_STYLES)) + if(!(m_nHtmlMode & HTMLMODE_FULL_STYLES)) { RemoveTabPage("background"); RemoveTabPage("dropcaps"); @@ -176,7 +176,7 @@ SwTemplateDlgController::SwTemplateDlgController(weld::Window* pParent, AddTabPage("header", SvxHeaderPage::Create, SvxHeaderPage::GetRanges); AddTabPage("footer", SvxFooterPage::Create, SvxFooterPage::GetRanges); AddTabPage("page", pFact->GetTabPageCreatorFunc(RID_SVXPAGE_PAGE), pFact->GetTabPageRangesFunc(RID_SVXPAGE_PAGE)); - if (0 == ::GetHtmlMode(pWrtShell->GetView().GetDocShell())) + if (0 == ::GetHtmlMode(m_pWrtShell->GetView().GetDocShell())) { AddTabPage("borders", pFact->GetTabPageCreatorFunc( RID_SVXPAGE_BORDER ), pFact->GetTabPageRangesFunc( RID_SVXPAGE_BORDER ) ); AddTabPage("columns", SwColumnPage::Create, SwColumnPage::GetRanges ); @@ -284,9 +284,9 @@ void SwTemplateDlgController::PageCreated(const OString& rId, SfxTabPage &rPage aSet.Put (SvxFontListItem( aFontListItem.GetFontList(), SID_ATTR_CHAR_FONTLIST)); sal_uInt32 nFlags = 0; - if(rPage.GetItemSet().GetParent() && 0 == (nHtmlMode & HTMLMODE_ON )) + if(rPage.GetItemSet().GetParent() && 0 == (m_nHtmlMode & HTMLMODE_ON )) nFlags = SVX_RELATIVE_MODE; - if( SfxStyleFamily::Char == nType ) + if( SfxStyleFamily::Char == m_nType ) nFlags = nFlags|SVX_PREVIEW_CHARACTER; aSet.Put (SfxUInt32Item(SID_FLAG_TYPE, nFlags)); rPage.PageCreated(aSet); @@ -294,19 +294,19 @@ void SwTemplateDlgController::PageCreated(const OString& rId, SfxTabPage &rPage else if (rId == "fonteffect") { sal_uInt32 nFlags = SVX_ENABLE_CHAR_TRANSPARENCY; - if( SfxStyleFamily::Char == nType ) + if( SfxStyleFamily::Char == m_nType ) nFlags = nFlags|SVX_PREVIEW_CHARACTER; aSet.Put (SfxUInt32Item(SID_FLAG_TYPE, nFlags)); rPage.PageCreated(aSet); } else if (rId == "position") { - if( SfxStyleFamily::Char == nType ) + if( SfxStyleFamily::Char == m_nType ) { aSet.Put (SfxUInt32Item(SID_FLAG_TYPE, SVX_PREVIEW_CHARACTER)); rPage.PageCreated(aSet); } - else if (SfxStyleFamily::Pseudo == nType) + else if (SfxStyleFamily::Pseudo == m_nType) { SwDocShell* pDocShell = ::GetActiveWrtShell()->GetView().GetDocShell(); FieldUnit eMetric = ::GetDfltMetric(dynamic_cast<SwWebDocShell*>( pDocShell) != nullptr ); @@ -317,7 +317,7 @@ void SwTemplateDlgController::PageCreated(const OString& rId, SfxTabPage &rPage } else if (rId == "columns") { - if( nType == SfxStyleFamily::Frame ) + if( m_nType == SfxStyleFamily::Frame ) static_cast<SwColumnPage&>(rPage).SetFrameMode(true); static_cast<SwColumnPage&>(rPage).SetFormatUsed( true ); } @@ -326,7 +326,7 @@ void SwTemplateDlgController::PageCreated(const OString& rId, SfxTabPage &rPage else if (rId == "background" || rId == "highlighting") { SvxBackgroundTabFlags nFlagType = SvxBackgroundTabFlags::NONE; - if( SfxStyleFamily::Char == nType || SfxStyleFamily::Para == nType ) + if( SfxStyleFamily::Char == m_nType || SfxStyleFamily::Para == m_nType ) nFlagType |= SvxBackgroundTabFlags::SHOW_HIGHLIGHTING; aSet.Put (SfxUInt32Item(SID_FLAG_TYPE, static_cast<sal_uInt32>(nFlagType))); rPage.PageCreated(aSet); @@ -338,15 +338,15 @@ void SwTemplateDlgController::PageCreated(const OString& rId, SfxTabPage &rPage } else if (rId == "page") { - if(0 == (nHtmlMode & HTMLMODE_ON )) + if(0 == (m_nHtmlMode & HTMLMODE_ON )) { std::vector<OUString> aList; OUString aNew; SwStyleNameMapper::FillUIName( RES_POOLCOLL_TEXT, aNew ); aList.push_back( aNew ); - if( pWrtShell ) + if( m_pWrtShell ) { - SfxStyleSheetBasePool* pStyleSheetPool = pWrtShell-> + SfxStyleSheetBasePool* pStyleSheetPool = m_pWrtShell-> GetView().GetDocShell()->GetStyleSheetPool(); SfxStyleSheetBase *pFirstStyle = pStyleSheetPool->First(SfxStyleFamily::Para); while(pFirstStyle) @@ -363,7 +363,7 @@ void SwTemplateDlgController::PageCreated(const OString& rId, SfxTabPage &rPage } else if (rId == "header") { - if(0 == (nHtmlMode & HTMLMODE_ON )) + if(0 == (m_nHtmlMode & HTMLMODE_ON )) { static_cast<SvxHeaderPage&>(rPage).EnableDynamicSpacing(); } @@ -374,7 +374,7 @@ void SwTemplateDlgController::PageCreated(const OString& rId, SfxTabPage &rPage } else if (rId == "footer") { - if(0 == (nHtmlMode & HTMLMODE_ON )) + if(0 == (m_nHtmlMode & HTMLMODE_ON )) { static_cast<SvxFooterPage&>(rPage).EnableDynamicSpacing(); } @@ -385,11 +385,11 @@ void SwTemplateDlgController::PageCreated(const OString& rId, SfxTabPage &rPage } else if (rId == "border") { - if( SfxStyleFamily::Para == nType ) + if( SfxStyleFamily::Para == m_nType ) { aSet.Put (SfxUInt16Item(SID_SWMODE_TYPE,static_cast<sal_uInt16>(SwBorderModes::PARA))); } - else if( SfxStyleFamily::Frame == nType ) + else if( SfxStyleFamily::Frame == m_nType ) { aSet.Put (SfxUInt16Item(SID_SWMODE_TYPE,static_cast<sal_uInt16>(SwBorderModes::FRAME))); } @@ -397,11 +397,11 @@ void SwTemplateDlgController::PageCreated(const OString& rId, SfxTabPage &rPage } else if (rId == "borders") { - if( SfxStyleFamily::Para == nType ) + if( SfxStyleFamily::Para == m_nType ) { aSet.Put (SfxUInt16Item(SID_SWMODE_TYPE,static_cast<sal_uInt16>(SwBorderModes::PARA))); } - else if( SfxStyleFamily::Frame == nType ) + else if( SfxStyleFamily::Frame == m_nType ) { aSet.Put (SfxUInt16Item(SID_SWMODE_TYPE,static_cast<sal_uInt16>(SwBorderModes::FRAME))); } @@ -433,23 +433,23 @@ void SwTemplateDlgController::PageCreated(const OString& rId, SfxTabPage &rPage } else if (rId == "outline") { - if (SfxStyleFamily::Pseudo == nType) + if (SfxStyleFamily::Pseudo == m_nType) { aSet.Put (SfxStringItem(SID_NUM_CHAR_FMT,sNumCharFormat)); aSet.Put (SfxStringItem(SID_BULLET_CHAR_FMT,sBulletCharFormat)); rPage.PageCreated(aSet); } - else if (SfxStyleFamily::Para == nType) + else if (SfxStyleFamily::Para == m_nType) { // handle if the current paragraph style is assigned to a list level of outline style, - SwTextFormatColl* pTmpColl = pWrtShell->FindTextFormatCollByName( GetStyleSheet().GetName() ); + SwTextFormatColl* pTmpColl = m_pWrtShell->FindTextFormatCollByName( GetStyleSheet().GetName() ); if( pTmpColl && pTmpColl->IsAssignedToListLevelOfOutlineStyle() ) { static_cast<SwParagraphNumTabPage&>(rPage).DisableOutline() ; static_cast<SwParagraphNumTabPage&>(rPage).DisableNumbering(); }//<-end weld::ComboBox& rBox = static_cast<SwParagraphNumTabPage&>(rPage).GetStyleBox(); - SfxStyleSheetBasePool* pPool = pWrtShell->GetView().GetDocShell()->GetStyleSheetPool(); + SfxStyleSheetBasePool* pPool = m_pWrtShell->GetView().GetDocShell()->GetStyleSheetPool(); const SfxStyleSheetBase* pBase = pPool->First(SfxStyleFamily::Pseudo); std::set<OUString> aNames; while(pBase) @@ -502,7 +502,7 @@ void SwTemplateDlgController::PageCreated(const OString& rId, SfxTabPage &rPage } else if (rId == "asianlayout") { - if( SfxStyleFamily::Char == nType ) + if( SfxStyleFamily::Char == m_nType ) { aSet.Put (SfxUInt32Item(SID_FLAG_TYPE, SVX_PREVIEW_CHARACTER)); rPage.PageCreated(aSet); @@ -526,8 +526,8 @@ void SwTemplateDlgController::PageCreated(const OString& rId, SfxTabPage &rPage { SfxAllItemSet aNewSet(*aSet.GetPool()); aNewSet.Put( SwMacroAssignDlg::AddEvents(MACASSGN_ALLFRM) ); - if ( pWrtShell ) - rPage.SetFrame( pWrtShell->GetView().GetViewFrame()->GetFrame().GetFrameInterface() ); + if ( m_pWrtShell ) + rPage.SetFrame( m_pWrtShell->GetView().GetViewFrame()->GetFrame().GetFrameInterface() ); rPage.PageCreated(aNewSet); } } diff --git a/sw/source/ui/misc/num.cxx b/sw/source/ui/misc/num.cxx index aa92ff6dcd77..137b6db9f015 100644 --- a/sw/source/ui/misc/num.cxx +++ b/sw/source/ui/misc/num.cxx @@ -863,12 +863,12 @@ SwSvxNumBulletTabDialog::SwSvxNumBulletTabDialog(weld::Window* pParent, const SfxItemSet* pSwItemSet, SwWrtShell & rSh) : SfxTabDialogController(pParent, "modules/swriter/ui/bulletsandnumbering.ui", "BulletsAndNumberingDialog", pSwItemSet) - , rWrtSh(rSh) + , m_rWrtSh(rSh) , m_xDummyCombo(m_xBuilder->weld_combo_box("dummycombo")) { weld::Button* pButton = GetUserButton(); pButton->connect_clicked(LINK(this, SwSvxNumBulletTabDialog, RemoveNumberingHdl)); - pButton->set_sensitive(rWrtSh.GetNumRuleAtCurrCursorPos() != nullptr); + pButton->set_sensitive(m_rWrtSh.GetNumRuleAtCurrCursorPos() != nullptr); AddTabPage("singlenum", RID_SVXPAGE_PICK_SINGLE_NUM ); AddTabPage("bullets", RID_SVXPAGE_PICK_BULLET ); AddTabPage("outlinenum", RID_SVXPAGE_PICK_NUM ); @@ -918,7 +918,7 @@ void SwSvxNumBulletTabDialog::PageCreated(const OString& rPageId, SfxTabPage& rP // collect char styles m_xDummyCombo->clear(); m_xDummyCombo->append_text(SwViewShell::GetShellRes()->aStrNone); - SwDocShell* pDocShell = rWrtSh.GetView().GetDocShell(); + SwDocShell* pDocShell = m_rWrtSh.GetView().GetDocShell(); ::FillCharStyleListBox(*m_xDummyCombo, pDocShell); std::vector<OUString> aList; @@ -934,7 +934,7 @@ void SwSvxNumBulletTabDialog::PageCreated(const OString& rPageId, SfxTabPage& rP } else if (rPageId == "position") { - SwDocShell* pDocShell = rWrtSh.GetView().GetDocShell(); + SwDocShell* pDocShell = m_rWrtSh.GetView().GetDocShell(); FieldUnit eMetric = ::GetDfltMetric(dynamic_cast< const SwWebDocShell *>( pDocShell ) != nullptr); SfxAllItemSet aSet(*(GetInputSetImpl()->GetPool())); aSet.Put ( SfxUInt16Item(SID_METRIC_ITEM, static_cast< sal_uInt16 >(eMetric)) ); diff --git a/sw/source/ui/table/tabledlg.cxx b/sw/source/ui/table/tabledlg.cxx index 329626663474..72b8743f7acf 100644 --- a/sw/source/ui/table/tabledlg.cxx +++ b/sw/source/ui/table/tabledlg.cxx @@ -1217,7 +1217,7 @@ void SwTableColumnPage::SetVisibleWidth(sal_uInt16 nPos, SwTwips nNewWidth) SwTableTabDlg::SwTableTabDlg(weld::Window* pParent, const SfxItemSet* pItemSet, SwWrtShell* pSh) : SfxTabDialogController(pParent, "modules/swriter/ui/tableproperties.ui", "TablePropertiesDialog", pItemSet) - , pShell(pSh) + , m_pShell(pSh) { SfxAbstractDialogFactory* pFact = SfxAbstractDialogFactory::Create(); AddTabPage("table", &SwFormatTablePage::Create, nullptr); @@ -1243,8 +1243,8 @@ void SwTableTabDlg::PageCreated(const OString& rId, SfxTabPage& rPage) } else if (rId == "textflow") { - static_cast<SwTextFlowPage&>(rPage).SetShell(pShell); - const FrameTypeFlags eType = pShell->GetFrameType(nullptr,true); + static_cast<SwTextFlowPage&>(rPage).SetShell(m_pShell); + const FrameTypeFlags eType = m_pShell->GetFrameType(nullptr,true); if( !(FrameTypeFlags::BODY & eType) ) static_cast<SwTextFlowPage&>(rPage).DisablePageBreak(); } diff --git a/sw/source/uibase/inc/num.hxx b/sw/source/uibase/inc/num.hxx index 463e8ea01b96..4290edcaaef4 100644 --- a/sw/source/uibase/inc/num.hxx +++ b/sw/source/uibase/inc/num.hxx @@ -119,7 +119,7 @@ public: class SwSvxNumBulletTabDialog final : public SfxTabDialogController { - SwWrtShell& rWrtSh; + SwWrtShell& m_rWrtSh; virtual short Ok() override; virtual void PageCreated(const OString& rPageId, SfxTabPage& rPage) override; diff --git a/sw/source/uibase/inc/tabledlg.hxx b/sw/source/uibase/inc/tabledlg.hxx index 0edb8efed3cb..ccf2fa12d22c 100644 --- a/sw/source/uibase/inc/tabledlg.hxx +++ b/sw/source/uibase/inc/tabledlg.hxx @@ -27,7 +27,7 @@ struct TColumn; // table dialog class SwTableTabDlg final : public SfxTabDialogController { - SwWrtShell* pShell; + SwWrtShell* m_pShell; virtual void PageCreated(const OString& rId, SfxTabPage& rPage) override; diff --git a/sw/source/uibase/inc/tmpdlg.hxx b/sw/source/uibase/inc/tmpdlg.hxx index e77b928bff19..62e1753e4a46 100644 --- a/sw/source/uibase/inc/tmpdlg.hxx +++ b/sw/source/uibase/inc/tmpdlg.hxx @@ -29,10 +29,10 @@ class SwWrtShell; class SwTemplateDlgController final : public SfxStyleDialogController { - SfxStyleFamily nType; - sal_uInt16 nHtmlMode; - SwWrtShell* pWrtShell; - bool bNewStyle; + SfxStyleFamily m_nType; + sal_uInt16 m_nHtmlMode; + SwWrtShell* m_pWrtShell; + bool m_bNewStyle; public: /// @param sPage