Module: wine Branch: master Commit: 52826af93c37ebf87e8c7e9b2a787a6cde719b1e URL: http://source.winehq.org/git/wine.git/?a=commit;h=52826af93c37ebf87e8c7e9b2a...
Author: Jacek Caban jacek@codeweavers.com Date: Sat Nov 12 14:32:47 2011 +0100
mshtml: Fixed HTMLPrivateWindow_GetAddressBarUrl function name.
---
dlls/mshtml/htmlwindow.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/mshtml/htmlwindow.c b/dlls/mshtml/htmlwindow.c index 650d18f..1b09697 100644 --- a/dlls/mshtml/htmlwindow.c +++ b/dlls/mshtml/htmlwindow.c @@ -2034,7 +2034,7 @@ static HRESULT WINAPI HTMLPrivateWindow_FindWindowByName(IHTMLPrivateWindow *ifa return E_NOTIMPL; }
-static HRESULT WINAPI HTMLPrivateWindow_GetAddressBar(IHTMLPrivateWindow *iface, BSTR *url) +static HRESULT WINAPI HTMLPrivateWindow_GetAddressBarUrl(IHTMLPrivateWindow *iface, BSTR *url) { HTMLWindow *This = impl_from_IHTMLPrivateWindow(iface); TRACE("(%p)->(%p)\n", This, url); @@ -2055,7 +2055,7 @@ static const IHTMLPrivateWindowVtbl HTMLPrivateWindowVtbl = { HTMLPrivateWindow_SetPICSTarget, HTMLPrivateWindow_PICSComplete, HTMLPrivateWindow_FindWindowByName, - HTMLPrivateWindow_GetAddressBar + HTMLPrivateWindow_GetAddressBarUrl };
static inline HTMLWindow *impl_from_IDispatchEx(IDispatchEx *iface)