summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-29 11:16:56 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-29 11:39:32 +0100
commit1545a28e5e85f2f3ff6a19dd49a45b1dd2a1a497 (patch)
tree04e990b535e168913eb8fded93f4e41d4c4743f2 /sfx2
parent01f23b8b8d319e7eac92bfed328b0e393d029f1e (diff)
coverity#1210189 Uninitialized pointer field
Change-Id: I47707799510a20918403ee6b66f4a4c2f01f5b22
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/dialog/basedlgs.cxx1
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");