Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
d8200e04
Commit
d8200e04
authored
Sep 11, 2023
by
Gabriel Ivăncescu
Committed by
Alexandre Julliard
Sep 11, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Use query_interface in the dispex vtbl for HTMLSelectionObject.
Signed-off-by:
Gabriel Ivăncescu
<
gabrielopcode@gmail.com
>
parent
908cfec3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
18 deletions
+17
-18
selection.c
dlls/mshtml/selection.c
+17
-18
No files found.
dlls/mshtml/selection.c
View file @
d8200e04
...
...
@@ -52,26 +52,12 @@ static HRESULT WINAPI HTMLSelectionObject_QueryInterface(IHTMLSelectionObject *i
{
HTMLSelectionObject
*
This
=
impl_from_IHTMLSelectionObject
(
iface
);
TRACE
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_mshtml_guid
(
riid
),
ppv
);
if
(
IsEqualGUID
(
&
IID_IUnknown
,
riid
))
{
*
ppv
=
&
This
->
IHTMLSelectionObject_iface
;
}
else
if
(
IsEqualGUID
(
&
IID_IDispatch
,
riid
))
{
*
ppv
=
&
This
->
IHTMLSelectionObject_iface
;
}
else
if
(
IsEqualGUID
(
&
IID_IHTMLSelectionObject
,
riid
))
{
*
ppv
=
&
This
->
IHTMLSelectionObject_iface
;
}
else
if
(
IsEqualGUID
(
&
IID_IHTMLSelectionObject2
,
riid
))
{
*
ppv
=
&
This
->
IHTMLSelectionObject2_iface
;
}
else
if
(
dispex_query_interface
(
&
This
->
dispex
,
riid
,
ppv
))
{
if
(
dispex_query_interface
(
&
This
->
dispex
,
riid
,
ppv
))
return
*
ppv
?
S_OK
:
E_NOINTERFACE
;
}
else
{
*
ppv
=
NULL
;
WARN
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_guid
(
riid
),
ppv
);
return
E_NOINTERFACE
;
}
IUnknown_AddRef
((
IUnknown
*
)
*
ppv
);
return
S_OK
;
*
ppv
=
NULL
;
WARN
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_mshtml_guid
(
riid
),
ppv
);
return
E_NOINTERFACE
;
}
static
ULONG
WINAPI
HTMLSelectionObject_AddRef
(
IHTMLSelectionObject
*
iface
)
...
...
@@ -323,6 +309,18 @@ static inline HTMLSelectionObject *impl_from_DispatchEx(DispatchEx *iface)
return
CONTAINING_RECORD
(
iface
,
HTMLSelectionObject
,
dispex
);
}
static
void
*
HTMLSelectionObject_query_interface
(
DispatchEx
*
dispex
,
REFIID
riid
)
{
HTMLSelectionObject
*
This
=
impl_from_DispatchEx
(
dispex
);
if
(
IsEqualGUID
(
&
IID_IHTMLSelectionObject
,
riid
))
return
&
This
->
IHTMLSelectionObject_iface
;
if
(
IsEqualGUID
(
&
IID_IHTMLSelectionObject2
,
riid
))
return
&
This
->
IHTMLSelectionObject2_iface
;
return
NULL
;
}
static
void
HTMLSelectionObject_traverse
(
DispatchEx
*
dispex
,
nsCycleCollectionTraversalCallback
*
cb
)
{
HTMLSelectionObject
*
This
=
impl_from_DispatchEx
(
dispex
);
...
...
@@ -347,6 +345,7 @@ static void HTMLSelectionObject_destructor(DispatchEx *dispex)
}
static
const
dispex_static_data_vtbl_t
HTMLSelectionObject_dispex_vtbl
=
{
.
query_interface
=
HTMLSelectionObject_query_interface
,
.
destructor
=
HTMLSelectionObject_destructor
,
.
traverse
=
HTMLSelectionObject_traverse
,
.
unlink
=
HTMLSelectionObject_unlink
...
...
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