From 16030c0700a3a68b5d6bbb8567bcc8bd690ba966 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 4 Dec 2024 08:37:26 +0000 Subject: cid#1636562 Uninitialized scalar field MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I4d9f76cc5cb767054e138819d2b8dd9032188c6c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/177770 Tested-by: Jenkins Reviewed-by: Caolán McNamara --- sc/source/ui/app/acctrl.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sc') 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: */ -- cgit