summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-10-24 17:57:31 +0200
committerStephan Bergmann <sbergman@redhat.com>2019-10-24 23:09:53 +0200
commit628a64895455efe2252fecdee270d08987e295c1 (patch)
tree344f2f570465eb7068eb06c61ba6a82dd270c21f /extensions
parentc698cb4f2d7ad100b25e15558a7aef2314b44a99 (diff)
Make this SAL_INFO less elaborate
...but simpler code. (These SAL_INFOs here started with 2b6a84c8f699c9da115ce297ad19b8f480ab608f "We might need to handle form controls as properties for OLE clients after all", and look like they were likely just a temporary debuggin tool anyway?) Change-Id: Id8dce87de639cbc4a649a8e5478798fdcdedf1b5 Reviewed-on: https://gerrit.libreoffice.org/81467 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/ole/unoobjw.cxx10
1 files changed, 3 insertions, 7 deletions
diff --git a/extensions/source/ole/unoobjw.cxx b/extensions/source/ole/unoobjw.cxx
index 0c67f4813263..436feb3097e9 100644
--- a/extensions/source/ole/unoobjw.cxx
+++ b/extensions/source/ole/unoobjw.cxx
@@ -1147,18 +1147,14 @@ COM_DECLSPEC_NOTHROW STDMETHODIMP InterfaceOleWrapper::GetIDsOfNames(REFIID /*ri
if( ! rgdispid)
return E_POINTER;
- OUString sNames("[");
+ SAL_INFO("extensions.olebridge", this << "@InterfaceOleWrapper::GetIDsOfNames:");
for (unsigned int i = 0; i < cNames; ++i)
{
// Initialise returned rgdispid values.
rgdispid[i] = DISPID_UNKNOWN;
- if (i > 0)
- sNames += ",";
- sNames += OUStringLiteral("\"") + o3tl::toU(rgszNames[i]) + "\"";
- }
- sNames += "]";
- SAL_INFO("extensions.olebridge", this << "@InterfaceOleWrapper::GetIDsOfNames(" << sNames);
+ SAL_INFO("extensions.olebridge", " " << o3tl::toU(rgszNames[i]));
+ }
HRESULT ret = DISP_E_UNKNOWNNAME;
try