diff options
-rw-r--r-- | include/filter/msfilter/svdfppt.hxx | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/filter/msfilter/svdfppt.hxx b/include/filter/msfilter/svdfppt.hxx index 286c1a07e41e..a64e05a7529b 100644 --- a/include/filter/msfilter/svdfppt.hxx +++ b/include/filter/msfilter/svdfppt.hxx @@ -286,7 +286,15 @@ struct PptUserEditAtom sal_Int16 eLastViewType; // enum view type public: - PptUserEditAtom() : nOffsetPersistDirectory( 0 ) {} + PptUserEditAtom() + : nLastSlideID( 0 ) + , nVersion( 0 ) + , nOffsetLastEdit( 0 ) + , nOffsetPersistDirectory( 0 ) + , nDocumentRef( 0 ) + , nMaxPersistWritten( 0 ) + , eLastViewType( 0 ) + {} friend SvStream& ReadPptUserEditAtom( SvStream& rIn, PptUserEditAtom& rAtom ); }; |