diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2012-01-03 20:34:06 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2012-01-03 20:36:08 +0100 |
commit | b07d24180641d3b9fe2f0ac2602f8263fcf3aaa6 (patch) | |
tree | 0f16b1cd2adad3aa16a97bf94e3023deb63c8462 /extensions/source | |
parent | 8173b0d29717438dcaa47b3cc2f7010c9646fbe0 (diff) |
Fix replace INVOKE_PROPERTYPUT, put INVOKE_PROPERTYPUTREF instead
Diffstat (limited to 'extensions/source')
-rw-r--r-- | extensions/source/ole/oleobjw.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/ole/oleobjw.cxx b/extensions/source/ole/oleobjw.cxx index 8fb92610a7da..9d203c89cd94 100644 --- a/extensions/source/ole/oleobjw.cxx +++ b/extensions/source/ole/oleobjw.cxx @@ -1814,7 +1814,7 @@ Any IUnknownWrapper_Impl::invokeWithDispIdComTlb(FuncDesc& aFuncDesc, if (dispparams.cNamedArgs > 0 && ! (dispparams.cNamedArgs == 1 && (aFuncDesc->invkind == INVOKE_PROPERTYPUT || - aFuncDesc->invkind == INVOKE_PROPERTYPUT))) + aFuncDesc->invkind == INVOKE_PROPERTYPUTREF))) { //set up an array containing the member and parameter names //which is then used in ITypeInfo::GetIDsOfNames |