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
becc92a8
Commit
becc92a8
authored
Oct 09, 2017
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 09, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml/tests: Fixed typo in iface_cmp helper.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
8f89e142
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
events.c
dlls/mshtml/tests/events.c
+5
-3
No files found.
dlls/mshtml/tests/events.c
View file @
becc92a8
...
...
@@ -159,7 +159,7 @@ static BOOL iface_cmp(IUnknown *iface1, IUnknown *iface2)
IUnknown_QueryInterface
(
iface1
,
&
IID_IUnknown
,
(
void
**
)
&
unk1
);
IUnknown_Release
(
unk1
);
IUnknown_QueryInterface
(
iface
1
,
&
IID_IUnknown
,
(
void
**
)
&
unk2
);
IUnknown_QueryInterface
(
iface
2
,
&
IID_IUnknown
,
(
void
**
)
&
unk2
);
IUnknown_Release
(
unk2
);
return
unk1
==
unk2
;
...
...
@@ -407,7 +407,8 @@ static void _test_attached_event_args(unsigned line, DISPID id, WORD wFlags, DIS
ok
(
V_DISPATCH
(
pdp
->
rgvarg
)
!=
NULL
,
"V_DISPATCH(pdp->rgvarg) = %p
\n
"
,
V_DISPATCH
(
pdp
->
rgvarg
));
event
=
_get_event_obj
(
line
);
ok
(
iface_cmp
((
IUnknown
*
)
event
,
(
IUnknown
*
)
V_DISPATCH
(
pdp
->
rgvarg
)),
"event != arg0
\n
"
);
todo_wine
ok
(
!
iface_cmp
((
IUnknown
*
)
event
,
(
IUnknown
*
)
V_DISPATCH
(
pdp
->
rgvarg
)),
"event != arg0
\n
"
);
IHTMLEventObj_Release
(
event
);
}
...
...
@@ -1376,7 +1377,8 @@ static void _test_cp_eventarg(unsigned line, REFIID riid, WORD flags, DISPPARAMS
ok
(
V_DISPATCH
(
dp
->
rgvarg
)
!=
NULL
,
"V_DISPATCH(dp->rgvarg) = %p
\n
"
,
V_DISPATCH
(
dp
->
rgvarg
));
event
=
_get_event_obj
(
line
);
ok
(
iface_cmp
((
IUnknown
*
)
event
,
(
IUnknown
*
)
V_DISPATCH
(
dp
->
rgvarg
)),
"event != arg0
\n
"
);
todo_wine
ok
(
!
iface_cmp
((
IUnknown
*
)
event
,
(
IUnknown
*
)
V_DISPATCH
(
dp
->
rgvarg
)),
"event != arg0
\n
"
);
IHTMLEventObj_Release
(
event
);
}
...
...
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