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
99773fca
Commit
99773fca
authored
Nov 04, 2010
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 04, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Properly handle QueryService(SID_SOleUndoManager) call.
parent
68272bac
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
service.c
dlls/mshtml/service.c
+3
-5
No files found.
dlls/mshtml/service.c
View file @
99773fca
...
...
@@ -237,15 +237,13 @@ static HRESULT WINAPI ServiceProvider_QueryService(IServiceProvider *iface, REFG
return
E_NOINTERFACE
;
}
if
(
IsEqualGUID
(
&
IID_IOleUndoManager
,
riid
))
{
TRACE
(
"
(%p)->(IID_IOleUndoManager %p)
\n
"
,
This
,
ppv
);
if
(
IsEqualGUID
(
&
SID_SOleUndoManager
,
guidService
))
{
TRACE
(
"
SID_SOleUndoManager
\n
"
);
if
(
!
This
->
doc_obj
->
undomgr
)
This
->
doc_obj
->
undomgr
=
create_undomgr
();
IOleUndoManager_AddRef
(
This
->
doc_obj
->
undomgr
);
*
ppv
=
This
->
doc_obj
->
undomgr
;
return
S_OK
;
return
IOleUndoManager_QueryInterface
(
This
->
doc_obj
->
undomgr
,
riid
,
ppv
);
}
if
(
This
->
doc_obj
->
client
)
{
...
...
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