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
9a67e1ff
Commit
9a67e1ff
authored
Jul 24, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
Jul 25, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Pass the correct DOCHOSTUITYPE value to IDocHostUIHandler_ShowUI.
Don't reset window_active in OleDocumentView_UIActivate.
parent
92b3cab7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
view.c
dlls/mshtml/view.c
+3
-3
No files found.
dlls/mshtml/view.c
View file @
9a67e1ff
...
...
@@ -596,8 +596,9 @@ static HRESULT WINAPI OleDocumentView_UIActivate(IOleDocumentView *iface, BOOL f
return
hres
;
}
hres
=
IDocHostUIHandler_ShowUI
(
This
->
hostui
,
0
,
ACTOBJ
(
This
),
CMDTARGET
(
This
),
This
->
frame
,
This
->
ip_window
);
hres
=
IDocHostUIHandler_ShowUI
(
This
->
hostui
,
This
->
usermode
==
EDITMODE
?
DOCHOSTUITYPE_AUTHOR
:
DOCHOSTUITYPE_BROWSE
,
ACTOBJ
(
This
),
CMDTARGET
(
This
),
This
->
frame
,
This
->
ip_window
);
if
(
FAILED
(
hres
))
IDocHostUIHandler_HideUI
(
This
->
hostui
);
...
...
@@ -609,7 +610,6 @@ static HRESULT WINAPI OleDocumentView_UIActivate(IOleDocumentView *iface, BOOL f
This
->
ui_active
=
TRUE
;
}
else
{
This
->
window_active
=
FALSE
;
if
(
This
->
ui_active
)
{
This
->
ui_active
=
FALSE
;
if
(
This
->
ip_window
)
...
...
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