summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-22 20:38:29 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-22 20:39:39 +0000
commitfb7fb4a9fdac60a004ec4c86afc451a5b5585955 (patch)
treef24c468729a182acf0a2f7a2a52e55864fb38932 /cui
parent51bef3b727bfbd2dd4eae974e6840e4ace216a61 (diff)
coverity#738582 Uninitialized pointer field
Change-Id: I8b717acba8e5b7e04258a6e76111fc6e867b3057
Diffstat (limited to 'cui')
-rw-r--r--cui/source/dialogs/cuigaldlg.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/cui/source/dialogs/cuigaldlg.cxx b/cui/source/dialogs/cuigaldlg.cxx
index b1d359d33e64..a2d26e074e5a 100644
--- a/cui/source/dialogs/cuigaldlg.cxx
+++ b/cui/source/dialogs/cuigaldlg.cxx
@@ -695,10 +695,12 @@ SfxTabPage* TPGalleryThemeGeneral::Create( Window* pParent, const SfxItemSet& rS
// - TPGalleryThemeProperties -
TPGalleryThemeProperties::TPGalleryThemeProperties( Window* pWindow, const SfxItemSet& rSet )
: SfxTabPage(pWindow, "GalleryFilesPage", "cui/ui/galleryfilespage.ui", rSet)
+ , pData(NULL)
, nCurFilterPos(0)
, nFirstExtFilterPos(0)
, bEntriesFound(false)
, bInputAllowed(true)
+ , bTakeAll(false)
, bSearchRecursive(false)
, xDialogListener(new ::svt::DialogClosedListener())
{