summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-07 12:50:22 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-07 13:47:02 +0100
commit29532437324ae3ec6de07e612d99a3d1cc2f36c4 (patch)
treecc65bb98b625ef077a685fc10cef871a53d84fa2 /sd
parentd913a5a9dfa44bb8061ff194e990c08cc40d7a69 (diff)
coverity#708117 Uninitialized scalar field
Change-Id: I7ef430d48c7a984bc68f89fdcca821ddd2265853
Diffstat (limited to 'sd')
-rw-r--r--sd/source/filter/eppt/eppt.hxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/sd/source/filter/eppt/eppt.hxx b/sd/source/filter/eppt/eppt.hxx
index dc9f1d10f89e..9350bda4658b 100644
--- a/sd/source/filter/eppt/eppt.hxx
+++ b/sd/source/filter/eppt/eppt.hxx
@@ -127,9 +127,11 @@ struct PPTExOleObjEntry
::com::sun::star::uno::Reference< ::com::sun::star::awt::XControlModel > xControlModel;
::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape > xShape;
- PPTExOleObjEntry( PPTExOleObjEntryType eT, sal_uInt32 nOfs ) :
- eType ( eT ),
- nOfsA ( nOfs ) {};
+ PPTExOleObjEntry(PPTExOleObjEntryType eT, sal_uInt32 nOfs)
+ : eType(eT)
+ , nOfsA(nOfs)
+ , nOfsB(0)
+ {}
};
struct TextRuleEntry