summaryrefslogtreecommitdiff
path: root/sw/source/ui/fldui/fldfunc.cxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2022-10-24 08:23:30 +0200
committerMiklos Vajna <vmiklos@collabora.com>2022-10-24 09:05:37 +0200
commitcd5acf308552ee878215e71251eb57dc5108b92a (patch)
treeecfbadb355a03e82f664f2f476eef704d4f71416 /sw/source/ui/fldui/fldfunc.cxx
parent6d2363a553c9e275f9430510d70bc4b84e02aad8 (diff)
sw: prefix members of SwFieldDokInfPage, SwFieldDokPage, SwFieldFuncPage ...
... and SwTranslateLangSelectDlg See tdf#94879 for motivation. Change-Id: I8a01e86594cc019815f5fa1e9b13c101a4cda6c0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141714 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/source/ui/fldui/fldfunc.cxx')
-rw-r--r--sw/source/ui/fldui/fldfunc.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sw/source/ui/fldui/fldfunc.cxx b/sw/source/ui/fldui/fldfunc.cxx
index 017a4d19c6aa..2ebd15ffa7fc 100644
--- a/sw/source/ui/fldui/fldfunc.cxx
+++ b/sw/source/ui/fldui/fldfunc.cxx
@@ -35,8 +35,8 @@ using namespace ::com::sun::star;
SwFieldFuncPage::SwFieldFuncPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet *const pCoreSet)
: SwFieldPage(pPage, pController, "modules/swriter/ui/fldfuncpage.ui", "FieldFuncPage", pCoreSet)
- , nOldFormat(0)
- , bDropDownLBChanged(false)
+ , m_nOldFormat(0)
+ , m_bDropDownLBChanged(false)
, m_xTypeLB(m_xBuilder->weld_tree_view("type"))
, m_xSelectionLB(m_xBuilder->weld_tree_view("select"))
, m_xFormat(m_xBuilder->weld_widget("formatframe"))
@@ -177,7 +177,7 @@ void SwFieldFuncPage::Reset(const SfxItemSet* )
m_xValueED->save_value();
m_xCond1ED->save_value();
m_xCond2ED->save_value();
- nOldFormat = GetCurField()->GetFormat();
+ m_nOldFormat = GetCurField()->GetFormat();
}
}
@@ -264,7 +264,7 @@ IMPL_LINK_NOARG(SwFieldFuncPage, TypeHdl, weld::TreeView&, void)
m_xListItemsLB->select_text(pDrop->GetSelectedItem());
m_xListNameED->set_text(pDrop->GetPar2());
m_xListNameED->save_value();
- bDropDownLBChanged = false;
+ m_bDropDownLBChanged = false;
}
else
{
@@ -449,7 +449,7 @@ void SwFieldFuncPage::ListModifyHdl(const weld::Widget* pControl)
}
}
}
- bDropDownLBChanged = true;
+ m_bDropDownLBChanged = true;
ListEnableHdl(*m_xListItemED);
}
@@ -566,8 +566,8 @@ bool SwFieldFuncPage::FillItemSet(SfxItemSet* )
m_xCond1ED->get_value_changed_from_saved() ||
m_xCond2ED->get_value_changed_from_saved() ||
m_xListNameED->get_value_changed_from_saved() ||
- bDropDownLBChanged ||
- nOldFormat != nFormat)
+ m_bDropDownLBChanged ||
+ m_nOldFormat != nFormat)
{
InsertField( nTypeId, nSubType, aName, aVal, nFormat );
}