diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-08-28 14:31:29 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-08-28 14:32:29 +0300 |
commit | 2de6bd04d9a40d746ebcd5d666efdbb30507623a (patch) | |
tree | fc672bbc49664d03fef4ec5061e4ffd811686f06 /extensions | |
parent | c9d39c37b2c186e2b9d9841b18ecc6aed4684f62 (diff) |
Bin a few leftover (?) stderr printouts
If they are truly needed, use SAL_INFO then.
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/ole/oleobjw.cxx | 5 | ||||
-rw-r--r-- | extensions/source/ole/unoobjw.cxx | 4 |
2 files changed, 0 insertions, 9 deletions
diff --git a/extensions/source/ole/oleobjw.cxx b/extensions/source/ole/oleobjw.cxx index 5f57ddad4be3..30910daf325c 100644 --- a/extensions/source/ole/oleobjw.cxx +++ b/extensions/source/ole/oleobjw.cxx @@ -127,11 +127,6 @@ IUnknownWrapper_Impl::~IUnknownWrapper_Impl() IT_Com it_c= ComPtrToWrapperMap.find( (sal_uInt32) m_spUnknown.p); if(it_c != ComPtrToWrapperMap.end()) 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) diff --git a/extensions/source/ole/unoobjw.cxx b/extensions/source/ole/unoobjw.cxx index 8286026d31ca..a8a45aab68a1 100644 --- a/extensions/source/ole/unoobjw.cxx +++ b/extensions/source/ole/unoobjw.cxx @@ -99,10 +99,6 @@ InterfaceOleWrapper_Impl::~InterfaceOleWrapper_Impl() IT_Uno it= UnoObjToWrapperMap.find( (sal_uInt32) m_xOrigin.get()); if(it != UnoObjToWrapperMap.end()) 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) |