diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-03-19 15:44:31 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-03-20 11:29:31 +0100 |
commit | 50541a0b5b594adaf8b801eb485faf3555810e2f (patch) | |
tree | 3a3aa73da36f7eea68273af56cd702b4d087ae93 /svtools | |
parent | 015337a6fae8693eb0f191da4a45055857259f39 (diff) |
cid#1473953 Uninitialized scalar field
Change-Id: I4d1bae818b36d613fd90840056dda5a22fa75c0d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112776
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/brwbox/brwbox1.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/svtools/source/brwbox/brwbox1.cxx b/svtools/source/brwbox/brwbox1.cxx index fb393cca29e2..a8d778ffb2f4 100644 --- a/svtools/source/brwbox/brwbox1.cxx +++ b/svtools/source/brwbox/brwbox1.cxx @@ -78,6 +78,10 @@ void BrowseBox::ConstructImpl( BrowserMode nMode ) nTopRow = 0; nCurRow = BROWSER_ENDOFSELECTION; nCurColId = 0; + nResizeX = 0; + nMinResizeX = 0; + nDragX = 0; + nResizeCol = 0; bResizing = false; bSelect = false; bSelecting = false; |