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
77a63b72
Commit
77a63b72
authored
Apr 04, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Apr 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
browseui: Return interface pointer instead of impl pointer.
parent
961b1a27
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
compcatcachedaemon.c
dlls/browseui/compcatcachedaemon.c
+1
-1
progressdlg.c
dlls/browseui/progressdlg.c
+1
-1
No files found.
dlls/browseui/aclmulti.c
View file @
77a63b72
...
...
@@ -325,7 +325,7 @@ HRESULT ACLMulti_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut)
This
->
refCount
=
1
;
TRACE
(
"returning %p
\n
"
,
This
);
*
ppOut
=
(
IUnknown
*
)
This
;
*
ppOut
=
(
IUnknown
*
)
&
This
->
IEnumString_iface
;
BROWSEUI_refCount
++
;
return
S_OK
;
}
dlls/browseui/aclsource.c
View file @
77a63b72
...
...
@@ -147,6 +147,6 @@ HRESULT ACLShellSource_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut)
This
->
refCount
=
1
;
TRACE
(
"returning %p
\n
"
,
This
);
*
ppOut
=
(
IUnknown
*
)
This
;
*
ppOut
=
(
IUnknown
*
)
&
This
->
IACList2_iface
;
return
S_OK
;
}
dlls/browseui/compcatcachedaemon.c
View file @
77a63b72
...
...
@@ -158,7 +158,7 @@ HRESULT CompCatCacheDaemon_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut)
This
->
cs
.
DebugInfo
->
Spare
[
0
]
=
(
DWORD_PTR
)(
__FILE__
": CompCatCacheDaemon.cs"
);
TRACE
(
"returning %p
\n
"
,
This
);
*
ppOut
=
(
IUnknown
*
)
This
;
*
ppOut
=
(
IUnknown
*
)
&
This
->
IRunnableTask_iface
;
InterlockedIncrement
(
&
BROWSEUI_refCount
);
return
S_OK
;
}
dlls/browseui/progressdlg.c
View file @
77a63b72
...
...
@@ -579,7 +579,7 @@ HRESULT ProgressDialog_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut)
This
->
cs
.
DebugInfo
->
Spare
[
0
]
=
(
DWORD_PTR
)(
__FILE__
": ProgressDialog.cs"
);
TRACE
(
"returning %p
\n
"
,
This
);
*
ppOut
=
(
IUnknown
*
)
This
;
*
ppOut
=
(
IUnknown
*
)
&
This
->
IProgressDialog_iface
;
InterlockedIncrement
(
&
BROWSEUI_refCount
);
return
S_OK
;
}
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