summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-07-17 19:48:42 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-07-18 09:36:03 +0200
commitde7ffaea58e5813c6e076f3612735c7c7cb70509 (patch)
tree06401afce69fa3a21e34dca78fe5e67cf1dc0bb5 /cui
parent955871e42d79903205cb0eeb7d82c6bb4d397ec1 (diff)
cid#1451643 Uninitialized pointer field
Change-Id: I5bb3087e8ccd0de2e04df9596ddf860de29689fb Reviewed-on: https://gerrit.libreoffice.org/75799 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui')
-rw-r--r--cui/source/dialogs/SpellDialog.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/cui/source/dialogs/SpellDialog.cxx b/cui/source/dialogs/SpellDialog.cxx
index 74af6f7d2a57..52671b110586 100644
--- a/cui/source/dialogs/SpellDialog.cxx
+++ b/cui/source/dialogs/SpellDialog.cxx
@@ -1110,7 +1110,9 @@ bool SpellDialog::ApplyChangeAllList_Impl(SpellPortions& rSentence, bool &bHasRe
}
SentenceEditWindow_Impl::SentenceEditWindow_Impl()
- : m_nErrorStart(0)
+ : m_pSpellDialog(nullptr)
+ , m_pToolbar(nullptr)
+ , m_nErrorStart(0)
, m_nErrorEnd(0)
, m_bIsUndoEditMode(false)
{