summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-10-08 09:39:11 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-10-08 10:00:04 +0100
commit7cf32bbf4e13258f6572c2ac37949c7761b7061e (patch)
tree70cfb30bcb5c605e710bfc734062e7c76e61b69b /sd
parent4b96089c09a0fecf05ede4df702ea8e5a7d96322 (diff)
CID#1079314 uninitialized members
Change-Id: I3f10b7ae435f466752914ef6d98ce5f6e923b785
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/animations/CustomAnimationList.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/sd/source/ui/animations/CustomAnimationList.cxx b/sd/source/ui/animations/CustomAnimationList.cxx
index 23ae228aea30..7876abdee20f 100644
--- a/sd/source/ui/animations/CustomAnimationList.cxx
+++ b/sd/source/ui/animations/CustomAnimationList.cxx
@@ -456,10 +456,12 @@ void CustomAnimationTriggerEntryItem::Clone( SvLBoxItem* )
// ====================================================================
CustomAnimationList::CustomAnimationList( ::Window* pParent )
-: SvTreeListBox( pParent, WB_TABSTOP | WB_BORDER ),
- mpController(0)
+ : SvTreeListBox( pParent, WB_TABSTOP | WB_BORDER )
+ , mbIgnorePaint(false)
+ , mpController(0)
+ , mnLastGroupId(0)
+ , mpLastParentEntry(0)
{
-
}
extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeCustomAnimationList( ::Window *pParent )