diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-10-08 09:39:30 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-10-08 10:00:04 +0100 |
commit | 009ddaf73b0458b3c08634e71042096d97e0a71d (patch) | |
tree | 526f42db10edb2da461ba088bdb0cc9fa3e0c8b6 /sfx2 | |
parent | 7cf32bbf4e13258f6572c2ac37949c7761b7061e (diff) |
CID#1079306 uninitialized members
Change-Id: I40838e5816439b95a33da6e6896f5ae0b89dbbef
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/lnkbase2.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sfx2/source/appl/lnkbase2.cxx b/sfx2/source/appl/lnkbase2.cxx index 4614e6523259..23f016a282f9 100644 --- a/sfx2/source/appl/lnkbase2.cxx +++ b/sfx2/source/appl/lnkbase2.cxx @@ -124,6 +124,7 @@ public: //-------------------------------------------------------------------------- SvBaseLink::SvBaseLink() + : m_bIsReadOnly(false) { pImpl = new BaseLink_Impl(); nObjType = OBJECT_CLIENT_SO; @@ -135,6 +136,7 @@ SvBaseLink::SvBaseLink() //-------------------------------------------------------------------------- SvBaseLink::SvBaseLink( sal_uInt16 nUpdateMode, sal_uIntPtr nContentType ) + : m_bIsReadOnly(false) { pImpl = new BaseLink_Impl(); nObjType = OBJECT_CLIENT_SO; @@ -152,6 +154,7 @@ SvBaseLink::SvBaseLink( sal_uInt16 nUpdateMode, sal_uIntPtr nContentType ) SvBaseLink::SvBaseLink( const OUString& rLinkName, sal_uInt16 nObjectType, SvLinkSource* pObj ) : pImpl(0) + , m_bIsReadOnly(false) { bVisible = bSynchron = bUseCache = sal_True; bWasLastEditOK = sal_False; |