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
d31176ec
Commit
d31176ec
authored
Jun 26, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Jun 26, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Moved history property to HTMLInnerWindow.
parent
4647fe0f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
htmlwindow.c
dlls/mshtml/htmlwindow.c
+3
-1
mshtml_private.h
dlls/mshtml/mshtml_private.h
+1
-1
No files found.
dlls/mshtml/htmlwindow.c
View file @
d31176ec
...
...
@@ -232,6 +232,8 @@ static void release_inner_window(HTMLInnerWindow *This)
if
(
This
->
screen
)
IHTMLScreen_Release
(
This
->
screen
);
if
(
This
->
history
)
IOmHistory_Release
(
This
->
history
);
heap_free
(
This
);
}
...
...
@@ -684,7 +686,7 @@ static HRESULT WINAPI HTMLWindow2_get_location(IHTMLWindow2 *iface, IHTMLLocatio
static
HRESULT
WINAPI
HTMLWindow2_get_history
(
IHTMLWindow2
*
iface
,
IOmHistory
**
p
)
{
HTMLWindow
*
This
=
impl_from_IHTMLWindow2
(
iface
);
HTML
OuterWindow
*
window
=
This
->
out
er_window
;
HTML
InnerWindow
*
window
=
This
->
inn
er_window
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
...
...
dlls/mshtml/mshtml_private.h
View file @
d31176ec
...
...
@@ -336,7 +336,6 @@ struct HTMLOuterWindow {
IInternetSecurityManager
*
secmgr
;
HTMLLocation
*
location
;
IOmHistory
*
history
;
struct
list
children
;
struct
list
sibling_entry
;
...
...
@@ -356,6 +355,7 @@ struct HTMLInnerWindow {
HTMLImageElementFactory
*
image_factory
;
HTMLOptionElementFactory
*
option_factory
;
IHTMLScreen
*
screen
;
IOmHistory
*
history
;
global_prop_t
*
global_props
;
DWORD
global_prop_cnt
;
...
...
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