diff options
-rw-r--r-- | sfx2/source/appl/linksrc.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sfx2/source/appl/linksrc.cxx b/sfx2/source/appl/linksrc.cxx index 7b29f37e0f73..ae0f2135fe0f 100644 --- a/sfx2/source/appl/linksrc.cxx +++ b/sfx2/source/appl/linksrc.cxx @@ -178,7 +178,12 @@ struct SvLinkSource_Impl m_xInputStreamToLoadFrom; sal_Bool m_bIsReadOnly; - SvLinkSource_Impl() : pTimer( 0 ), nTimeout( 3000 ) {} + SvLinkSource_Impl() + : pTimer(0) + , nTimeout(3000) + , m_bIsReadOnly(false) + { + } ~SvLinkSource_Impl(); void Closed(); |