summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2015-08-28 14:31:29 +0300
committerTor Lillqvist <tml@collabora.com>2015-08-28 14:32:29 +0300
commit2de6bd04d9a40d746ebcd5d666efdbb30507623a (patch)
treefc672bbc49664d03fef4ec5061e4ffd811686f06 /extensions
parentc9d39c37b2c186e2b9d9841b18ecc6aed4684f62 (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.cxx5
-rw-r--r--extensions/source/ole/unoobjw.cxx4
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)