[Libreoffice-commits] core.git: sd/source

Caolán McNamara caolanm at redhat.com
Fri Oct 11 00:58:52 PDT 2013


 sd/source/ui/dlg/headerfooterdlg.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 51013801b055eeb1b5a60894be383e0c639ba059
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Fri Oct 11 08:58:14 2013 +0100

    CID#1103763 uninitialized member
    
    Change-Id: Ib6b003160a36e4dcdfab603def10c2731828806e

diff --git a/sd/source/ui/dlg/headerfooterdlg.cxx b/sd/source/ui/dlg/headerfooterdlg.cxx
index d3ebed9..b499e3f 100644
--- a/sd/source/ui/dlg/headerfooterdlg.cxx
+++ b/sd/source/ui/dlg/headerfooterdlg.cxx
@@ -734,7 +734,8 @@ void HeaderFooterTabPage::GetOrSetDateTimeLanguage( LanguageType &rLanguage, boo
 ///////////////////////////////////////////////////////////////////////
 
 PresLayoutPreview::PresLayoutPreview( ::Window* pParent )
-:Control( pParent )
+    : Control(pParent)
+    , mpMaster(NULL)
 {
 }
 


More information about the Libreoffice-commits mailing list