diff options
author | Joachim Lingner <jl@openoffice.org> | 2001-06-27 12:04:38 +0000 |
---|---|---|
committer | Joachim Lingner <jl@openoffice.org> | 2001-06-27 12:04:38 +0000 |
commit | 1390fc5c7f89f92320f894df50bba12faf01180e (patch) | |
tree | d6fcbe9e90d68f1cf73cca9d51d0a6109a53ee53 | |
parent | ace2742bbb600a94b2c6c00d1e4312d0aeb0ca0f (diff) |
#67468# Refcount of OleApplicationRegistration did not work properly
-rw-r--r-- | extensions/source/ole/servprov.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/ole/servprov.cxx b/extensions/source/ole/servprov.cxx index 8af56d10ad57..f699bddcae9a 100644 --- a/extensions/source/ole/servprov.cxx +++ b/extensions/source/ole/servprov.cxx @@ -2,9 +2,9 @@ * * $RCSfile: servprov.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: jl $ $Date: 2001-06-27 10:56:03 $ + * last change: $Author: jl $ $Date: 2001-06-27 13:04:38 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -239,7 +239,7 @@ STDMETHODIMP ProviderOleWrapper_Impl::LockServer(int fLock) OneInstanceOleWrapper_Impl::OneInstanceOleWrapper_Impl( const Reference<XMultiServiceFactory>& smgr, const Reference<XInterface>& xInst, GUID* pGuid) - : m_xInst(xInst), + : m_xInst(xInst), m_refCount(0), m_smgr( smgr) { m_guid = *pGuid; |