diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-08-17 14:17:43 +0100 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-08-17 20:09:26 +0200 |
commit | f74e50d705ed2c8ae3a42ab8bddd4b57031a5d8e (patch) | |
tree | 4c2f10aa2da1783ebd3e6bb7c175f0ad86aa6297 | |
parent | 25b61215ca91ec474c46f5ab8af067b4568f0bf9 (diff) |
cid#1616505 Uninitialized scalar field
Change-Id: I6521d25f7763ebe7f1b0d1213ab641c284c5e228
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171970
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
-rw-r--r-- | sc/source/ui/condformat/condformateasydlg.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
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)) |