summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
Diffstat (limited to 'package')
-rw-r--r--package/source/xstor/owriteablestream.cxx1
-rw-r--r--package/source/xstor/xstorage.cxx2
2 files changed, 0 insertions, 3 deletions
diff --git a/package/source/xstor/owriteablestream.cxx b/package/source/xstor/owriteablestream.cxx
index 89daf8ccafdb..a049a47a8030 100644
--- a/package/source/xstor/owriteablestream.cxx
+++ b/package/source/xstor/owriteablestream.cxx
@@ -73,7 +73,6 @@ struct WSInternalData_Impl
// the mutex reference MUST NOT be empty
WSInternalData_Impl( const rtl::Reference<comphelper::RefCountedMutex>& rMutexRef, sal_Int32 nStorageType )
: m_xSharedMutex( rMutexRef )
- , m_pTypeCollection()
, m_aListenersContainer( rMutexRef->GetMutex() )
, m_nStorageType( nStorageType )
{}
diff --git a/package/source/xstor/xstorage.cxx b/package/source/xstor/xstorage.cxx
index 58524e525e85..e8153d4e79aa 100644
--- a/package/source/xstor/xstorage.cxx
+++ b/package/source/xstor/xstorage.cxx
@@ -92,11 +92,9 @@ struct StorInternalData_Impl
StorInternalData_Impl( const rtl::Reference<comphelper::RefCountedMutex>& rMutexRef, bool bRoot, sal_Int32 nStorageType, bool bReadOnlyWrap )
: m_xSharedMutex( rMutexRef )
, m_aListenersContainer( rMutexRef->GetMutex() )
- , m_pTypeCollection()
, m_bIsRoot( bRoot )
, m_nStorageType( nStorageType )
, m_bReadOnlyWrap( bReadOnlyWrap )
- , m_pSubElDispListener()
{}
};