Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
8085b708
Commit
8085b708
authored
Oct 02, 2009
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 02, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Get rid of no longer needed HTMLLocation_value.
parent
1c60a21a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
35 deletions
+1
-35
htmllocation.c
dlls/mshtml/htmllocation.c
+1
-35
No files found.
dlls/mshtml/htmllocation.c
View file @
8085b708
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment