Kaydet (Commit) 2de6bd04 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Bin a few leftover (?) stderr printouts

If they are truly needed, use SAL_INFO then.
üst c9d39c37
...@@ -127,11 +127,6 @@ IUnknownWrapper_Impl::~IUnknownWrapper_Impl() ...@@ -127,11 +127,6 @@ IUnknownWrapper_Impl::~IUnknownWrapper_Impl()
IT_Com it_c= ComPtrToWrapperMap.find( (sal_uInt32) m_spUnknown.p); IT_Com it_c= ComPtrToWrapperMap.find( (sal_uInt32) m_spUnknown.p);
if(it_c != ComPtrToWrapperMap.end()) if(it_c != ComPtrToWrapperMap.end())
ComPtrToWrapperMap.erase(it_c); ComPtrToWrapperMap.erase(it_c);
#if OSL_DEBUG_LEVEL > 0
fprintf(stderr,"[automation bridge] ComPtrToWrapperMap contains: %i \n",
ComPtrToWrapperMap.size());
#endif
} }
Any IUnknownWrapper_Impl::queryInterface(const Type& t) Any IUnknownWrapper_Impl::queryInterface(const Type& t)
......
...@@ -99,10 +99,6 @@ InterfaceOleWrapper_Impl::~InterfaceOleWrapper_Impl() ...@@ -99,10 +99,6 @@ InterfaceOleWrapper_Impl::~InterfaceOleWrapper_Impl()
IT_Uno it= UnoObjToWrapperMap.find( (sal_uInt32) m_xOrigin.get()); IT_Uno it= UnoObjToWrapperMap.find( (sal_uInt32) m_xOrigin.get());
if(it != UnoObjToWrapperMap.end()) if(it != UnoObjToWrapperMap.end())
UnoObjToWrapperMap.erase(it); UnoObjToWrapperMap.erase(it);
#if OSL_DEBUG_LEVEL > 0
fprintf(stderr,"[automation bridge] UnoObjToWrapperMap contains: %i \n",
UnoObjToWrapperMap.size());
#endif
} }
STDMETHODIMP InterfaceOleWrapper_Impl::QueryInterface(REFIID riid, LPVOID FAR * ppv) STDMETHODIMP InterfaceOleWrapper_Impl::QueryInterface(REFIID riid, LPVOID FAR * ppv)
......
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