oleaut32: ICreateTypeLib2_SetLcid sets both LCID's.

This commit is contained in:
Jon Griffiths 2008-06-29 05:09:33 -07:00 committed by Alexandre Julliard
parent 72607b89a7
commit 04912d26b9
1 changed files with 1 additions and 1 deletions

View File

@ -3203,7 +3203,7 @@ static HRESULT WINAPI ICreateTypeLib2_fnSetLcid(ICreateTypeLib2 * iface, LCID lc
TRACE("(%p,%d)\n", iface, lcid);
This->typelib_header.lcid2 = lcid;
This->typelib_header.lcid = This->typelib_header.lcid2 = lcid;
return S_OK;
}