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
d7f0a5ff
Commit
d7f0a5ff
authored
Mar 20, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Mar 20, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
browseui: Return interface pointer from QI instead of impl pointer.
parent
cd4a1ea9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
aclmulti.c
dlls/browseui/aclmulti.c
+1
-1
aclsource.c
dlls/browseui/aclsource.c
+1
-1
browseui_main.c
dlls/browseui/browseui_main.c
+1
-1
compcatcachedaemon.c
dlls/browseui/compcatcachedaemon.c
+1
-1
No files found.
dlls/browseui/aclmulti.c
View file @
d7f0a5ff
...
...
@@ -100,7 +100,7 @@ static HRESULT WINAPI ACLMulti_QueryInterface(IEnumString *iface, REFIID iid, LP
if
(
IsEqualIID
(
iid
,
&
IID_IUnknown
)
||
IsEqualIID
(
iid
,
&
IID_IEnumString
))
{
*
ppvOut
=
This
;
*
ppvOut
=
&
This
->
IEnumString_iface
;
}
else
if
(
IsEqualIID
(
iid
,
&
IID_IACList
))
{
...
...
dlls/browseui/aclsource.c
View file @
d7f0a5ff
...
...
@@ -67,7 +67,7 @@ static HRESULT WINAPI ACLShellSource_QueryInterface(IACList2 *iface, REFIID iid,
if
(
IsEqualIID
(
iid
,
&
IID_IUnknown
)
||
IsEqualIID
(
iid
,
&
IID_IACList2
)
||
IsEqualIID
(
iid
,
&
IID_IACList
))
{
*
ppvOut
=
This
;
*
ppvOut
=
&
This
->
IACList2_iface
;
}
if
(
*
ppvOut
)
...
...
dlls/browseui/browseui_main.c
View file @
d7f0a5ff
...
...
@@ -152,7 +152,7 @@ static HRESULT ClassFactory_Constructor(LPFNCONSTRUCTOR ctor, LPVOID *ppvOut)
This
->
IClassFactory_iface
.
lpVtbl
=
&
ClassFactoryVtbl
;
This
->
ref
=
1
;
This
->
ctor
=
ctor
;
*
ppvOut
=
This
;
*
ppvOut
=
&
This
->
IClassFactory_iface
;
TRACE
(
"Created class factory %p
\n
"
,
This
);
InterlockedIncrement
(
&
BROWSEUI_refCount
);
return
S_OK
;
...
...
dlls/browseui/compcatcachedaemon.c
View file @
d7f0a5ff
...
...
@@ -70,7 +70,7 @@ static HRESULT WINAPI CompCatCacheDaemon_QueryInterface(IRunnableTask *iface, RE
if
(
IsEqualIID
(
iid
,
&
IID_IRunnableTask
)
||
IsEqualIID
(
iid
,
&
IID_IUnknown
))
{
*
ppvOut
=
This
;
*
ppvOut
=
&
This
->
IRunnableTask_iface
;
}
if
(
*
ppvOut
)
...
...
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