sc/source/ui/app/acctrl.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
New commits: commit 16030c0700a3a68b5d6bbb8567bcc8bd690ba966 Author: Caolán McNamara <caolan.mcnam...@collabora.com> AuthorDate: Wed Dec 4 08:37:26 2024 +0000 Commit: Caolán McNamara <caolan.mcnam...@collabora.com> CommitDate: Wed Dec 4 11:01:10 2024 +0100 cid#1636562 Uninitialized scalar field Change-Id: I4d9f76cc5cb767054e138819d2b8dd9032188c6c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/177770 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnam...@collabora.com> diff --git a/sc/source/ui/app/acctrl.cxx b/sc/source/ui/app/acctrl.cxx index 4f3ac234c3dc..bff92c18e684 100644 --- a/sc/source/ui/app/acctrl.cxx +++ b/sc/source/ui/app/acctrl.cxx @@ -33,6 +33,7 @@ SFX_IMPL_STATUSBAR_CONTROL(ScAutoCalculateControl, SfxBoolItem); ScAutoCalculateControl::ScAutoCalculateControl(sal_uInt16 _nSlotId, sal_uInt16 _nId, StatusBar& rStb) : SfxStatusBarControl(_nSlotId, _nId, rStb) + , m_bIsActive(false) { } @@ -80,4 +81,4 @@ void ScAutoCalculateControl::Click() SfxStatusBarControl::Click(); // exec FID_AUTO_CALC and toggle AutoCalc on } -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ \ No newline at end of file +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */