From cc256da45a9d4907ecaa61f4912d0c26a97ca266 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Wed, 3 Jul 2024 10:02:56 +0100 Subject: [PATCH] cid#1607629 Uninitialized scalar field MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Iaaef519741b6cec7aabe0e4b9b58ebe1a858e03e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169926 Reviewed-by: Caolán McNamara Tested-by: Jenkins --- sw/source/ui/frmdlg/column.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/sw/source/ui/frmdlg/column.cxx b/sw/source/ui/frmdlg/column.cxx index 427cca6a94a4..103c5f2c9e35 100644 --- a/sw/source/ui/frmdlg/column.cxx +++ b/sw/source/ui/frmdlg/column.cxx @@ -369,6 +369,7 @@ constexpr sal_uInt16 g_nMinWidth(MINLAY); SwColumnPage::SwColumnPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet &rSet) : SfxTabPage(pPage, pController, u"modules/swriter/ui/columnpage.ui"_ustr, u"ColumnPage"_ustr, &rSet) , m_nFirstVis(0) + , m_nCols(0) , m_pModifiedField(nullptr) , m_bFormat(false) , m_bFrame(false)