diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-18 08:54:02 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-11-18 08:54:02 +0200 |
commit | fbd95af61bec73c77090f71b1c0f84f8180d4a60 (patch) | |
tree | 2bed2a86e4196fdcbf6da27fed74b50da8f1cddc /sfx2 | |
parent | 89ac4f6255bc9734d1b34bc2994bf275fa1b011f (diff) |
fix for windows build
after my commit 032dae364b4853635186b7541e40c71588f9050a
"use unique_ptr for pImpl in sfx2/"
Change-Id: Ib7361a6b030a8ed28383bf0d30935bd3fb4a397d
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/lnkbase2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/appl/lnkbase2.cxx b/sfx2/source/appl/lnkbase2.cxx index f3b4cc808fab..930939ebdf4a 100644 --- a/sfx2/source/appl/lnkbase2.cxx +++ b/sfx2/source/appl/lnkbase2.cxx @@ -192,7 +192,7 @@ static DdeTopic* FindTopic( const OUString & rLinkName, sal_uInt16* pItemStt ) } SvBaseLink::SvBaseLink( const OUString& rLinkName, sal_uInt16 nObjectType, SvLinkSource* pObj ) - : pImpl(0) + : pImpl() , m_bIsReadOnly(false) { bVisible = bSynchron = bUseCache = true; |