summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2003-04-23 16:12:19 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2003-04-23 16:12:19 +0000
commit625d05091cd79bc36c715675629713b6f4439ca9 (patch)
treea8ea178cd6e49415c4a3c9edb079e81977784330 /extensions
parent0ad67d79a2eaf5e6c961d3e4ae03028acb9e26a8 (diff)
INTEGRATION: CWS uno2 (1.15.62); FILE MERGED
2003/04/02 10:04:35 jl 1.15.62.1: #108553# IDispatch::GetIDsOfNames treats Bridge_GetStruct case insensitive now
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/ole/unoobjw.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/extensions/source/ole/unoobjw.cxx b/extensions/source/ole/unoobjw.cxx
index 6eff7843a0d9..c1ac5ed8a478 100644
--- a/extensions/source/ole/unoobjw.cxx
+++ b/extensions/source/ole/unoobjw.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: unoobjw.cxx,v $
*
- * $Revision: 1.15 $
+ * $Revision: 1.16 $
*
- * last change: $Author: jl $ $Date: 2002-09-17 11:00:32 $
+ * last change: $Author: rt $ $Date: 2003-04-23 17:12:19 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -263,14 +263,14 @@ STDMETHODIMP InterfaceOleWrapper_Impl::GetIDsOfNames(REFIID riid,
return E_POINTER;
HRESULT ret = E_UNEXPECTED;
// ----------------------------------------
- if( ! wcscmp( *rgszNames, JSCRIPT_VALUE_FUNC) ||
- ! wcscmp( *rgszNames, BRIDGE_VALUE_FUNC))
+ if( ! _wcsicmp( *rgszNames, JSCRIPT_VALUE_FUNC) ||
+ ! _wcsicmp( *rgszNames, BRIDGE_VALUE_FUNC))
{
*rgdispid= DISPID_JSCRIPT_VALUE_FUNC;
return S_OK;
}
- else if( ! wcscmp( *rgszNames, GET_STRUCT_FUNC) ||
- ! wcscmp( *rgszNames, BRIDGE_GET_STRUCT_FUNC))
+ else if( ! _wcsicmp( *rgszNames, GET_STRUCT_FUNC) ||
+ ! _wcsicmp( *rgszNames, BRIDGE_GET_STRUCT_FUNC))
{
*rgdispid= DISPID_GET_STRUCT_FUNC;
return S_OK;