include/svx/imapdlg.hxx | 2 +- svx/source/dialog/imapdlg.cxx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)
New commits: commit 726b1151e25ae748ca76c21cabb427d82f00c23c Author: Miklos Vajna <[email protected]> AuthorDate: Mon Feb 2 08:47:21 2026 +0100 Commit: Miklos Vajna <[email protected]> CommitDate: Mon Feb 2 10:12:10 2026 +0100 svx: prefix members of SvxIMapDlgItem See tdf#94879 for motivation. Change-Id: Ie75dce4fc7f16696d316c9d5a4eec1769e4e30bc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/198513 Tested-by: Jenkins Reviewed-by: Miklos Vajna <[email protected]> diff --git a/include/svx/imapdlg.hxx b/include/svx/imapdlg.hxx index b31501f3c815..5a31351a377a 100644 --- a/include/svx/imapdlg.hxx +++ b/include/svx/imapdlg.hxx @@ -68,7 +68,7 @@ class SvxIMapDlg; class SvxIMapDlgItem final : public SfxControllerItem { - SvxIMapDlg& rIMap; + SvxIMapDlg& m_rIMap; virtual void StateChangedAtToolBoxControl( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState ) override; diff --git a/svx/source/dialog/imapdlg.cxx b/svx/source/dialog/imapdlg.cxx index 3bf8098fb750..faded8737064 100644 --- a/svx/source/dialog/imapdlg.cxx +++ b/svx/source/dialog/imapdlg.cxx @@ -63,7 +63,7 @@ SFX_IMPL_MODELESSDIALOGCONTOLLER_WITHID( SvxIMapDlgChildWindow, SID_IMAP ); SvxIMapDlgItem::SvxIMapDlgItem( SvxIMapDlg& rIMapDlg, SfxBindings& rBindings ) : SfxControllerItem ( SID_IMAP_EXEC, rBindings ), - rIMap ( rIMapDlg ) + m_rIMap ( rIMapDlg ) { } @@ -77,7 +77,7 @@ void SvxIMapDlgItem::StateChangedAtToolBoxControl( sal_uInt16 nSID, SfxItemState if (pStateItem) { // Disable Float if possible - rIMap.SetExecState( !pStateItem->GetValue() ); + m_rIMap.SetExecState( !pStateItem->GetValue() ); } } }
