summaryrefslogtreecommitdiff
path: root/sw/source/uibase/sidebar/PageFooterPanel.cxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2022-01-17 08:06:45 +0100
committerMiklos Vajna <vmiklos@collabora.com>2022-01-17 09:00:17 +0100
commitd64afaac3411ef74d16ca24cb4b5aa5254ea6f36 (patch)
tree2990a21457dd1692dc12c10369bf342b0c320ddf /sw/source/uibase/sidebar/PageFooterPanel.cxx
parentc32994e22ff291b0227ed74de6d0d050cf0901c8 (diff)
sw: prefix members of SwTableFUNC, sw::sidebar::PageFooterPanel, ...
... sw::sidebar::PageFormatPanel and sw::sidebar::PageHeaderPanel See tdf#94879 for motivation. Change-Id: I68ac0ba7d36ae9217a98d90245cac104c636fe1e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128492 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/source/uibase/sidebar/PageFooterPanel.cxx')
-rw-r--r--sw/source/uibase/sidebar/PageFooterPanel.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sw/source/uibase/sidebar/PageFooterPanel.cxx b/sw/source/uibase/sidebar/PageFooterPanel.cxx
index 4abe1b471464..5d177bdb27ab 100644
--- a/sw/source/uibase/sidebar/PageFooterPanel.cxx
+++ b/sw/source/uibase/sidebar/PageFooterPanel.cxx
@@ -100,7 +100,7 @@ void PageFooterPanel::Initialize()
SetMarginsAndSpacingFieldUnit();
- aCustomEntry = mxCustomEntry->get_label();
+ m_aCustomEntry = mxCustomEntry->get_label();
mxFooterToggle->connect_toggled( LINK(this, PageFooterPanel, FooterToggleHdl) );
mxFooterMarginPresetLB->connect_changed( LINK(this, PageFooterPanel, FooterLRMarginHdl));
mxFooterSpacingLB->connect_changed( LINK(this, PageFooterPanel, FooterSpacingHdl));
@@ -141,15 +141,15 @@ void PageFooterPanel::UpdateMarginControl()
if (mxFooterMarginPresetLB->get_id(i).toUInt32() == nLeft)
{
mxFooterMarginPresetLB->set_active(i);
- int nCustomEntry = mxFooterMarginPresetLB->find_text(aCustomEntry);
+ int nCustomEntry = mxFooterMarginPresetLB->find_text(m_aCustomEntry);
if (nCustomEntry != -1)
mxFooterMarginPresetLB->remove(nCustomEntry);
return;
}
}
}
- mxFooterMarginPresetLB->append_text(aCustomEntry);
- mxFooterMarginPresetLB->set_active_text(aCustomEntry);
+ mxFooterMarginPresetLB->append_text(m_aCustomEntry);
+ mxFooterMarginPresetLB->set_active_text(m_aCustomEntry);
}
void PageFooterPanel::UpdateSpacingControl()
@@ -161,14 +161,14 @@ void PageFooterPanel::UpdateSpacingControl()
if (mxFooterSpacingLB->get_id(i).toUInt32() == nBottom)
{
mxFooterSpacingLB->set_active(i);
- int nCustomEntry = mxFooterSpacingLB->find_text(aCustomEntry);
+ int nCustomEntry = mxFooterSpacingLB->find_text(m_aCustomEntry);
if (nCustomEntry != -1)
mxFooterSpacingLB->remove(nCustomEntry);
return;
}
}
- mxFooterSpacingLB->append_text(aCustomEntry);
- mxFooterSpacingLB->set_active_text(aCustomEntry);
+ mxFooterSpacingLB->append_text(m_aCustomEntry);
+ mxFooterSpacingLB->set_active_text(m_aCustomEntry);
}
void PageFooterPanel::UpdateLayoutControl()