From f74e50d705ed2c8ae3a42ab8bddd4b57031a5d8e Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sat, 17 Aug 2024 14:17:43 +0100 Subject: cid#1616505 Uninitialized scalar field MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I6521d25f7763ebe7f1b0d1213ab641c284c5e228 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171970 Tested-by: Jenkins Reviewed-by: Caolán McNamara --- sc/source/ui/condformat/condformateasydlg.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sc/source/ui/condformat/condformateasydlg.cxx b/sc/source/ui/condformat/condformateasydlg.cxx index 835f5de9eddc..12ee8dc6f618 100644 --- a/sc/source/ui/condformat/condformateasydlg.cxx +++ b/sc/source/ui/condformat/condformateasydlg.cxx @@ -64,6 +64,8 @@ ConditionalFormatEasyDialog::ConditionalFormatEasyDialog(SfxBindings* pBindings, , mpViewData(pViewData) , mpDocument(&mpViewData->GetDocument()) , mbIsManaged(false) + , mnFormatKey(0) + , mnEntryIndex(0) , mxNumberEntry(m_xBuilder->weld_entry(u"entryNumber"_ustr)) , mxNumberEntry2(m_xBuilder->weld_entry(u"entryNumber2"_ustr)) , mxAllInputs(m_xBuilder->weld_container(u"allInputs"_ustr)) -- cgit