diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2022-12-12 08:00:46 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2022-12-12 07:44:27 +0000 |
commit | dc3b969b25f897f5cdf5e824865b187b973b3f82 (patch) | |
tree | 6fecd04acf3c381ae31254824ad7970ca36d7730 /sw/source/ui/dbui | |
parent | 01c9c971e43782800ebf63acc763a7e7fba096c1 (diff) |
sw: prefix members of CellsEnumWrapper, ColumnsEnumWrapper, ...
... SwSendQueryBox_Impl and SwVbaTableHelper
See tdf#94879 for motivation.
Change-Id: I5cb6ffe8604ba473c93318058c7955d8caa4bbea
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143978
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'sw/source/ui/dbui')
-rw-r--r-- | sw/source/ui/dbui/mmresultdialogs.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/ui/dbui/mmresultdialogs.cxx b/sw/source/ui/dbui/mmresultdialogs.cxx index 03d7e43cf63e..3c23b05820f3 100644 --- a/sw/source/ui/dbui/mmresultdialogs.cxx +++ b/sw/source/ui/dbui/mmresultdialogs.cxx @@ -164,7 +164,7 @@ public: class SwSendQueryBox_Impl : public SwMessageAndEditDialog { - bool bIsEmptyAllowed; + bool m_bIsEmptyAllowed; DECL_LINK( ModifyHdl, weld::Entry&, void); public: SwSendQueryBox_Impl(weld::Window* pParent, const OString& rID, @@ -183,7 +183,7 @@ public: void SetIsEmptyTextAllowed(bool bSet) { - bIsEmptyAllowed = bSet; + m_bIsEmptyAllowed = bSet; ModifyHdl(*m_xEdit); } }; @@ -212,7 +212,7 @@ IMPL_LINK( SwSaveWarningBox_Impl, ModifyHdl, weld::Entry&, rEdit, void) SwSendQueryBox_Impl::SwSendQueryBox_Impl(weld::Window* pParent, const OString& rID, const OUString& rUIXMLDescription) : SwMessageAndEditDialog(pParent, rID, rUIXMLDescription) - , bIsEmptyAllowed(true) + , m_bIsEmptyAllowed(true) { m_xEdit->connect_changed(LINK(this, SwSendQueryBox_Impl, ModifyHdl)); ModifyHdl(*m_xEdit); @@ -220,7 +220,7 @@ SwSendQueryBox_Impl::SwSendQueryBox_Impl(weld::Window* pParent, const OString& r IMPL_LINK( SwSendQueryBox_Impl, ModifyHdl, weld::Entry&, rEdit, void) { - m_xOKPB->set_sensitive(bIsEmptyAllowed || !rEdit.get_text().isEmpty()); + m_xOKPB->set_sensitive(m_bIsEmptyAllowed || !rEdit.get_text().isEmpty()); } namespace { |