diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-11 13:19:57 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-11 14:33:37 +0000 |
commit | 6ca45dbb0cb137230e9b3a0ce6d719b981617d29 (patch) | |
tree | 8bc05106ef5159f25489da68bd4838063d94ddbf /cui | |
parent | 994362b3bd6d2a988e031828bfb36f1752042319 (diff) |
coverity#738581 Uninitialized pointer field
Change-Id: I01738db66ffa1dc2926a84da890e803d54ced76b
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/cuigaldlg.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cui/source/dialogs/cuigaldlg.cxx b/cui/source/dialogs/cuigaldlg.cxx index ac9707fad912..bff5ad288e55 100644 --- a/cui/source/dialogs/cuigaldlg.cxx +++ b/cui/source/dialogs/cuigaldlg.cxx @@ -641,7 +641,8 @@ TPGalleryThemeGeneral::TPGalleryThemeGeneral( Window* pParent, const SfxItemSet& aFtMSShowContent ( this, CUI_RES( FT_MS_SHOW_CONTENT ) ), aFlMSGeneralSecond ( this, CUI_RES( FL_MS_GENERAL_SECOND ) ), aFtMSChangeDate ( this, CUI_RES( FT_MS_CHANGEDATE ) ), - aFtMSShowChangeDate ( this, CUI_RES( FT_MS_SHOW_CHANGEDATE ) ) + aFtMSShowChangeDate ( this, CUI_RES( FT_MS_SHOW_CHANGEDATE ) ), + pData(NULL) { FreeResource(); |