diff options
author | Tor Lillqvist <tml@collabora.com> | 2018-04-09 15:35:40 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2018-05-31 13:40:17 +0300 |
commit | b34d42129178731a841c52aac186f5d9f4fa817e (patch) | |
tree | d6a6718a0b0b63f833f59eee8e85b22a92e17a02 /extensions | |
parent | 27a1351122dbab79536870d7080307defbcae433 (diff) |
A few SAL_INFO tweaks
Change-Id: I4a9c6341891bc80d8ab7648ed972d57739aa4f4a
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/ole/unoobjw.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extensions/source/ole/unoobjw.cxx b/extensions/source/ole/unoobjw.cxx index 57b054e66ec4..ddcf1ddf89f5 100644 --- a/extensions/source/ole/unoobjw.cxx +++ b/extensions/source/ole/unoobjw.cxx @@ -792,7 +792,7 @@ HRESULT STDMETHODCALLTYPE CXTypeInfo::GetNames(MEMBERID memid, UINT cMaxNames, UINT *pcNames) { - SAL_WARN("extensions.olebridge", "CXTypeInfo@" << this << "::GetNames(" << memid << ")"); + SAL_INFO("extensions.olebridge", "CXTypeInfo@" << this << "::GetNames(" << memid << ")"); assert(meKind != Kind::COCLASS); if (!rgBstrNames) @@ -827,6 +827,7 @@ HRESULT STDMETHODCALLTYPE CXTypeInfo::GetNames(MEMBERID memid, if (memid > aMethods.getLength() - 3) return E_INVALIDARG; + SAL_INFO("extensions.olebridge", "...CXTypeInfo@" << this << "::GetNames(" << memid << "): " << aMethods[memid + 2]->getName()); rgBstrNames[0] = SysAllocString((LPOLESTR) aMethods[memid + 2]->getName().pData->buffer); *pcNames = 1; |