Commit 0044cc8f authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

oleaut32: Do nothing for TKIND_ALIAS types in ::LayOut().

parent ea3c215b
...@@ -2623,10 +2623,10 @@ static HRESULT WINAPI ICreateTypeInfo2_fnLayOut( ...@@ -2623,10 +2623,10 @@ static HRESULT WINAPI ICreateTypeInfo2_fnLayOut(
unsigned user_vft = 0; unsigned user_vft = 0;
int i; int i;
TRACE("(%p)\n", iface); TRACE("(%p)\n", This);
/* FIXME: LayOut should be run on all ImplTypes */ /* FIXME: LayOut should be run on all ImplTypes */
if(This->typekind == TKIND_COCLASS) if(This->typekind == TKIND_COCLASS || This->typekind == TKIND_ALIAS)
return S_OK; return S_OK;
/* Validate inheritance */ /* Validate inheritance */
......
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