mshtml: Fix the spelling of a MoveUnitBounded() parameter.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2020-07-17 13:22:45 +02:00 committed by Alexandre Julliard
parent 500131b2f5
commit a029551e7c
1 changed files with 2 additions and 2 deletions

View File

@ -2343,10 +2343,10 @@ static HRESULT WINAPI MarkupPointer2_MoveToMarkupPosition(IMarkupPointer2 *iface
return E_NOTIMPL;
}
static HRESULT WINAPI MarkupPointer2_MoveUnitBounded(IMarkupPointer2 *iface, MOVEUNIT_ACTION action, IMarkupPointer *boundry)
static HRESULT WINAPI MarkupPointer2_MoveUnitBounded(IMarkupPointer2 *iface, MOVEUNIT_ACTION action, IMarkupPointer *boundary)
{
MarkupPointer *This = impl_from_IMarkupPointer2(iface);
FIXME("(%p)->(%u %p)\n", This, action, boundry);
FIXME("(%p)->(%u %p)\n", This, action, boundary);
return E_NOTIMPL;
}