Kaydet (Commit) 009ddaf7 authored tarafından Caolán McNamara's avatar Caolán McNamara

CID#1079306 uninitialized members

Change-Id: I40838e5816439b95a33da6e6896f5ae0b89dbbef
üst 7cf32bbf
...@@ -124,6 +124,7 @@ public: ...@@ -124,6 +124,7 @@ public:
//-------------------------------------------------------------------------- //--------------------------------------------------------------------------
SvBaseLink::SvBaseLink() SvBaseLink::SvBaseLink()
: m_bIsReadOnly(false)
{ {
pImpl = new BaseLink_Impl(); pImpl = new BaseLink_Impl();
nObjType = OBJECT_CLIENT_SO; nObjType = OBJECT_CLIENT_SO;
...@@ -135,6 +136,7 @@ SvBaseLink::SvBaseLink() ...@@ -135,6 +136,7 @@ SvBaseLink::SvBaseLink()
//-------------------------------------------------------------------------- //--------------------------------------------------------------------------
SvBaseLink::SvBaseLink( sal_uInt16 nUpdateMode, sal_uIntPtr nContentType ) SvBaseLink::SvBaseLink( sal_uInt16 nUpdateMode, sal_uIntPtr nContentType )
: m_bIsReadOnly(false)
{ {
pImpl = new BaseLink_Impl(); pImpl = new BaseLink_Impl();
nObjType = OBJECT_CLIENT_SO; nObjType = OBJECT_CLIENT_SO;
...@@ -152,6 +154,7 @@ SvBaseLink::SvBaseLink( sal_uInt16 nUpdateMode, sal_uIntPtr nContentType ) ...@@ -152,6 +154,7 @@ SvBaseLink::SvBaseLink( sal_uInt16 nUpdateMode, sal_uIntPtr nContentType )
SvBaseLink::SvBaseLink( const OUString& rLinkName, sal_uInt16 nObjectType, SvLinkSource* pObj ) SvBaseLink::SvBaseLink( const OUString& rLinkName, sal_uInt16 nObjectType, SvLinkSource* pObj )
: pImpl(0) : pImpl(0)
, m_bIsReadOnly(false)
{ {
bVisible = bSynchron = bUseCache = sal_True; bVisible = bSynchron = bUseCache = sal_True;
bWasLastEditOK = sal_False; bWasLastEditOK = sal_False;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment