mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 13:10:28 +00:00
mshtml: Get rid of no longer needed HTMLLocation_value.
This commit is contained in:
parent
1c60a21a53
commit
8085b7085c
@ -343,34 +343,6 @@ static HRESULT WINAPI HTMLLocation_toString(IHTMLLocation *iface, BSTR *String)
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static HRESULT HTMLLocation_value(IUnknown *iface, LCID lcid, WORD flags, DISPPARAMS *params,
|
||||
VARIANT *res, EXCEPINFO *ei, IServiceProvider *caller)
|
||||
{
|
||||
HTMLLocation *This = HTMLLOCATION_THIS(iface);
|
||||
HRESULT hres;
|
||||
|
||||
TRACE("(%p)\n", This);
|
||||
|
||||
switch(flags) {
|
||||
case DISPATCH_PROPERTYGET: {
|
||||
BSTR str;
|
||||
|
||||
hres = IHTMLLocation_get_href(HTMLLOCATION(This), &str);
|
||||
if(FAILED(hres))
|
||||
return hres;
|
||||
|
||||
V_VT(res) = VT_BSTR;
|
||||
V_BSTR(res) = str;
|
||||
break;
|
||||
}
|
||||
default:
|
||||
FIXME("unimplemented flags %x\n", flags);
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
#undef HTMLLOCATION_THIS
|
||||
|
||||
static const IHTMLLocationVtbl HTMLLocationVtbl = {
|
||||
@ -403,18 +375,12 @@ static const IHTMLLocationVtbl HTMLLocationVtbl = {
|
||||
HTMLLocation_toString
|
||||
};
|
||||
|
||||
static const dispex_static_data_vtbl_t HTMLLocation_dispex_vtbl = {
|
||||
HTMLLocation_value,
|
||||
NULL,
|
||||
NULL
|
||||
};
|
||||
|
||||
static const tid_t HTMLLocation_iface_tids[] = {
|
||||
IHTMLLocation_tid,
|
||||
0
|
||||
};
|
||||
static dispex_static_data_t HTMLLocation_dispex = {
|
||||
&HTMLLocation_dispex_vtbl,
|
||||
NULL,
|
||||
DispHTMLLocation_tid,
|
||||
NULL,
|
||||
HTMLLocation_iface_tids
|
||||
|
Loading…
Reference in New Issue
Block a user