diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-10-11 08:58:14 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-10-11 08:58:14 +0100 |
commit | 51013801b055eeb1b5a60894be383e0c639ba059 (patch) | |
tree | 9e5a11d12a105ccbc0aa7e06f9732c0570280960 /sd/source/ui/dlg | |
parent | 2f6b2cf6e91c973998256f2f7e6b801489915cab (diff) |
CID#1103763 uninitialized member
Change-Id: Ib6b003160a36e4dcdfab603def10c2731828806e
Diffstat (limited to 'sd/source/ui/dlg')
-rw-r--r-- | sd/source/ui/dlg/headerfooterdlg.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sd/source/ui/dlg/headerfooterdlg.cxx b/sd/source/ui/dlg/headerfooterdlg.cxx index d3ebed9a6341..b499e3f9f7bc 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) { } |