sc/source/core/tool/inputopt.cxx |    1 +
 sc/source/ui/view/tabvwsh4.cxx   |    1 +
 2 files changed, 2 insertions(+)

New commits:
commit c274dcc2ef08eb78354c4a234015d0a32aeb6706
Author:     Caolán McNamara <caolan.mcnam...@collabora.com>
AuthorDate: Fri Jan 5 16:42:03 2024 +0000
Commit:     Skyler Grey <skyler.g...@collabora.com>
CommitDate: Mon Jan 8 16:40:59 2024 +0100

    uninitialized class members
    
    since:
    
    commit 284f2759dedbc2375abdbaab5258efda4a52b8f5
    Date:   Mon Dec 4 14:08:09 2023 +0000
    
        calc: Add option to keep edit mode on enter/tab
    
    Change-Id: I47431f9096e12fe84ad13a139fba60ddd88793d1
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161695
    Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com>
    Reviewed-by: Skyler Grey <skyler.g...@collabora.com>

diff --git a/sc/source/core/tool/inputopt.cxx b/sc/source/core/tool/inputopt.cxx
index 13781040ee22..08d4feff60dc 100644
--- a/sc/source/core/tool/inputopt.cxx
+++ b/sc/source/core/tool/inputopt.cxx
@@ -32,6 +32,7 @@ using namespace com::sun::star::uno;
 ScInputOptions::ScInputOptions()
     : nMoveDir(DIR_BOTTOM)
     , bMoveSelection(true)
+    , bMoveKeepEdit(false)
     , bEnterEdit(false)
     , bExtendFormat(false)
     , bRangeFinder(true)
diff --git a/sc/source/ui/view/tabvwsh4.cxx b/sc/source/ui/view/tabvwsh4.cxx
index 071017d5da43..2ff01b9f83e3 100644
--- a/sc/source/ui/view/tabvwsh4.cxx
+++ b/sc/source/ui/view/tabvwsh4.cxx
@@ -1711,6 +1711,7 @@ ScTabViewShell::ScTabViewShell( SfxViewFrame* pViewFrame,
     bForceFocusOnCurCell(false),
     bInPrepareClose(false),
     bInDispose(false),
+    bMoveKeepEdit(false),
     nCurRefDlgId(0),
     mbInSwitch(false),
     m_pDragData(new ScDragData)

Reply via email to