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
971be288
Commit
971be288
authored
Feb 27, 2021
by
Nikolay Sivov
Committed by
Alexandre Julliard
Mar 01, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msado15: Fix copy-paste typos in IDispatch methods.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c1395d92
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
command.c
dlls/msado15/command.c
+1
-1
stream.c
dlls/msado15/stream.c
+2
-2
No files found.
dlls/msado15/command.c
View file @
971be288
...
...
@@ -133,7 +133,7 @@ static HRESULT WINAPI command_Invoke( _Command *iface, DISPID member, REFIID rii
TRACE
(
"%p, %d, %s, %d, %d, %p, %p, %p, %p
\n
"
,
command
,
member
,
debugstr_guid
(
riid
),
lcid
,
flags
,
params
,
result
,
excep_info
,
arg_err
);
hr
=
get_typeinfo
(
Co
nnection
_tid
,
&
typeinfo
);
hr
=
get_typeinfo
(
Co
mmand
_tid
,
&
typeinfo
);
if
(
SUCCEEDED
(
hr
))
{
hr
=
ITypeInfo_Invoke
(
typeinfo
,
&
command
->
Command_iface
,
member
,
flags
,
params
,
...
...
dlls/msado15/stream.c
View file @
971be288
...
...
@@ -113,7 +113,7 @@ static HRESULT WINAPI stream_GetIDsOfNames( _Stream *iface, REFIID riid, LPOLEST
TRACE
(
"%p, %s, %p, %u, %u, %p
\n
"
,
stream
,
debugstr_guid
(
riid
),
names
,
count
,
lcid
,
dispid
);
hr
=
get_typeinfo
(
Connection
_tid
,
&
typeinfo
);
hr
=
get_typeinfo
(
Stream
_tid
,
&
typeinfo
);
if
(
SUCCEEDED
(
hr
))
{
hr
=
ITypeInfo_GetIDsOfNames
(
typeinfo
,
names
,
count
,
dispid
);
...
...
@@ -133,7 +133,7 @@ static HRESULT WINAPI stream_Invoke( _Stream *iface, DISPID member, REFIID riid,
TRACE
(
"%p, %d, %s, %d, %d, %p, %p, %p, %p
\n
"
,
stream
,
member
,
debugstr_guid
(
riid
),
lcid
,
flags
,
params
,
result
,
excep_info
,
arg_err
);
hr
=
get_typeinfo
(
Connection
_tid
,
&
typeinfo
);
hr
=
get_typeinfo
(
Stream
_tid
,
&
typeinfo
);
if
(
SUCCEEDED
(
hr
))
{
hr
=
ITypeInfo_Invoke
(
typeinfo
,
&
stream
->
Stream_iface
,
member
,
flags
,
params
,
...
...
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