diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-22 20:38:29 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-22 20:39:39 +0000 |
commit | fb7fb4a9fdac60a004ec4c86afc451a5b5585955 (patch) | |
tree | f24c468729a182acf0a2f7a2a52e55864fb38932 /cui/source | |
parent | 51bef3b727bfbd2dd4eae974e6840e4ace216a61 (diff) |
coverity#738582 Uninitialized pointer field
Change-Id: I8b717acba8e5b7e04258a6e76111fc6e867b3057
Diffstat (limited to 'cui/source')
-rw-r--r-- | cui/source/dialogs/cuigaldlg.cxx | 2 |
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()) { |