summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolan.mcnamara@collabora.com>2024-01-05 16:42:03 +0000
committerAndras Timar <andras.timar@collabora.com>2024-01-16 22:12:07 +0100
commit608d6db0399f1a3cf908ab64de01985a4bfcce3b (patch)
tree15a0de1e66ec2c348cab23228362704b9f7b7fc4
parentdee7f73d312d063c8a445dbcb735bb8fa23fa61b (diff)
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/+/161697 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
-rw-r--r--sc/source/core/tool/inputopt.cxx1
-rw-r--r--sc/source/ui/view/tabvwsh4.cxx1
2 files changed, 2 insertions, 0 deletions
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 345a33534d1c..7d20ed10a085 100644
--- a/sc/source/ui/view/tabvwsh4.cxx
+++ b/sc/source/ui/view/tabvwsh4.cxx
@@ -1708,6 +1708,7 @@ ScTabViewShell::ScTabViewShell( SfxViewFrame& rViewFrame,
bForceFocusOnCurCell(false),
bInPrepareClose(false),
bInDispose(false),
+ bMoveKeepEdit(false),
nCurRefDlgId(0),
mbInSwitch(false),
m_pDragData(new ScDragData)