Jacek Caban : mshtml: Use proper name for OnRedirectVerifyCallback implementation.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Oct 5 10:30:27 CDT 2015


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

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Mon Oct  5 15:50:34 2015 +0200

mshtml: Use proper name for OnRedirectVerifyCallback implementation.

Signed-off-by: Jacek Caban <jacek at codeweavers.com>

---

 dlls/mshtml/navigate.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/mshtml/navigate.c b/dlls/mshtml/navigate.c
index b324160..ed61ab0 100644
--- a/dlls/mshtml/navigate.c
+++ b/dlls/mshtml/navigate.c
@@ -1137,7 +1137,7 @@ static nsrefcnt NSAPI nsAsyncVerifyRedirectCallback_Release(nsIAsyncVerifyRedire
     return ref;
 }
 
-static nsresult NSAPI nsAsyncVerifyRedirectCallback_AsyncOnChannelRedirect(nsIAsyncVerifyRedirectCallback *iface, nsresult result)
+static nsresult NSAPI nsAsyncVerifyRedirectCallback_OnRedirectVerifyCallback(nsIAsyncVerifyRedirectCallback *iface, nsresult result)
 {
     nsRedirectCallback *This = impl_from_nsIAsyncVerifyRedirectCallback(iface);
     nsChannel *old_nschannel;
@@ -1184,7 +1184,7 @@ static const nsIAsyncVerifyRedirectCallbackVtbl nsAsyncVerifyRedirectCallbackVtb
     nsAsyncVerifyRedirectCallback_QueryInterface,
     nsAsyncVerifyRedirectCallback_AddRef,
     nsAsyncVerifyRedirectCallback_Release,
-    nsAsyncVerifyRedirectCallback_AsyncOnChannelRedirect
+    nsAsyncVerifyRedirectCallback_OnRedirectVerifyCallback
 };
 
 static HRESULT create_redirect_callback(nsChannel *nschannel, nsChannelBSC *bsc, nsRedirectCallback **ret)




More information about the wine-cvs mailing list