Don't ignore DISPATCH_METHOD in ITypeInfo::Invoke.

This commit is contained in:
Ove Kaaven 2001-10-03 18:42:54 +00:00 committed by Alexandre Julliard
parent 5a538105d1
commit e35f4ee144
1 changed files with 1 additions and 1 deletions

View File

@ -3918,7 +3918,7 @@ static HRESULT WINAPI ITypeInfo_fnInvoke(
for(pFDesc=This->funclist; pFDesc; pFDesc=pFDesc->next)
if (pFDesc->funcdesc.memid == memid) {
if (pFDesc->funcdesc.invkind & (dwFlags & ~DISPATCH_METHOD))
if (pFDesc->funcdesc.invkind & dwFlags)
break;
}
if (pFDesc) {