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

Alexandre Julliard julliard at winehq.org
Fri Jul 17 16:30:46 CDT 2020


Module: wine
Branch: master
Commit: a029551e7c533df2485a636596ce9b0ce99084b9
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=a029551e7c533df2485a636596ce9b0ce99084b9

Author: Francois Gouget <fgouget at free.fr>
Date:   Fri Jul 17 13:22:45 2020 +0200

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

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Jacek Caban <jacek at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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 c15470c4ff..7db62f49a1 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;
 }
 




More information about the wine-cvs mailing list