Signed-off-by: Francois Gouget fgouget@free.fr --- dlls/mshtml/range.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/mshtml/range.c b/dlls/mshtml/range.c index c15470c4ff5..7db62f49a12 100644 --- a/dlls/mshtml/range.c +++ b/dlls/mshtml/range.c @@ -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; }