diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-29 10:59:17 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-29 11:39:30 +0100 |
commit | f6b53bb08e5c5ebdf20c2312ab067598bcd13f4c (patch) | |
tree | 8038ad5b2cea6e68c2fff25caa0e45a270544101 /sc | |
parent | faaa1aab3837c909b89dd28460d72a575c0c5fd4 (diff) |
coverity#1210199 Uninitialized scalar field
Change-Id: Ia07d39191a4676f0ba2381bde0a03925bb6c8931
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/miscdlgs/datafdlg.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/source/ui/miscdlgs/datafdlg.cxx b/sc/source/ui/miscdlgs/datafdlg.cxx index f9e4639b89d6..b4ad28de509b 100644 --- a/sc/source/ui/miscdlgs/datafdlg.cxx +++ b/sc/source/ui/miscdlgs/datafdlg.cxx @@ -24,6 +24,7 @@ ScDataFormDlg::ScDataFormDlg(Window* pParent, ScTabViewShell* pTabViewShellOri) : ModalDialog(pParent, "DataFormDialog", "modules/scalc/ui/dataform.ui") , pTabViewShell(pTabViewShellOri) + , bNoSelection(false) { get(m_pBtnNew, "new"); get(m_pBtnDelete, "delete"); |