diff options
Diffstat (limited to 'include/svl')
-rw-r--r-- | include/svl/filerec.hxx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/include/svl/filerec.hxx b/include/svl/filerec.hxx index 637dc7c8e9de..321dd44f22d0 100644 --- a/include/svl/filerec.hxx +++ b/include/svl/filerec.hxx @@ -239,8 +239,14 @@ protected: sal_uInt8 _nPreTag; // aus dem Header gelesenes Pre-Tag // Drei-Phasen-Ctor f"ur Subklassen - SfxMiniRecordReader() {} - void Construct_Impl( SvStream *pStream, sal_uInt8 nTag ) + SfxMiniRecordReader() + : _pStream(NULL) + , _nEofRec(0) + , _bSkipped(false) + , _nPreTag(0) + { + } + void Construct_Impl( SvStream *pStream, sal_uInt8 nTag ) { _pStream = pStream; _bSkipped = false; |