diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-29 11:16:56 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-29 11:39:32 +0100 |
commit | 1545a28e5e85f2f3ff6a19dd49a45b1dd2a1a497 (patch) | |
tree | 04e990b535e168913eb8fded93f4e41d4c4743f2 /sfx2 | |
parent | 01f23b8b8d319e7eac92bfed328b0e393d029f1e (diff) |
coverity#1210189 Uninitialized pointer field
Change-Id: I47707799510a20918403ee6b66f4a4c2f01f5b22
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/dialog/basedlgs.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sfx2/source/dialog/basedlgs.cxx b/sfx2/source/dialog/basedlgs.cxx index f461a4b3eb42..9bebf9dff15b 100644 --- a/sfx2/source/dialog/basedlgs.cxx +++ b/sfx2/source/dialog/basedlgs.cxx @@ -710,6 +710,7 @@ IMPL_LINK_NOARG(SfxSingleTabDialog, OKHdl_Impl) SfxSingleTabDialog::SfxSingleTabDialog(Window *pParent, const SfxItemSet& rSet, const OString& rID, const OUString& rUIXMLDescription) : SfxModalDialog(pParent, rID, rUIXMLDescription) + , fnGetRanges(NULL) , pImpl(new SingleTabDlgImpl) { get(pOKBtn, "ok"); |