Commit 7adad427 authored by Andrew Eikum's avatar Andrew Eikum Committed by Alexandre Julliard

oleaut32: Use implementation bitflag in href.

parent d983e6d5
......@@ -6054,8 +6054,11 @@ static HRESULT WINAPI ITypeInfo_fnGetRefTypeOfImplType(
{
if(index >= This->cImplTypes)
hr = TYPE_E_ELEMENTNOTFOUND;
else
else{
*pRefType = This->impltypes[index].hRef;
if(This->typekind == TKIND_INTERFACE)
*pRefType |= 0x2;
}
}
if(TRACE_ON(ole))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment