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
6b793e94
Commit
6b793e94
authored
Jan 03, 2011
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jan 03, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Use ifaces instead of vtbl pointers in HTMLFrameBase.
parent
2a809403
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
7 deletions
+5
-7
htmlframe.c
dlls/mshtml/htmlframe.c
+1
-1
htmlframebase.c
dlls/mshtml/htmlframebase.c
+0
-0
htmliframe.c
dlls/mshtml/htmliframe.c
+1
-1
htmlwindow.c
dlls/mshtml/htmlwindow.c
+1
-1
mshtml_private.h
dlls/mshtml/mshtml_private.h
+2
-4
No files found.
dlls/mshtml/htmlframe.c
View file @
6b793e94
...
...
@@ -220,7 +220,7 @@ static HRESULT HTMLFrameElement_get_readystate(HTMLDOMNode *iface, BSTR *p)
{
HTMLFrameElement
*
This
=
impl_from_HTMLDOMNode
(
iface
);
return
IHTMLFrameBase2_get_readyState
(
HTMLFRAMEBASE2
(
&
This
->
framebase
)
,
p
);
return
IHTMLFrameBase2_get_readyState
(
&
This
->
framebase
.
IHTMLFrameBase2_iface
,
p
);
}
static
HRESULT
HTMLFrameElement_get_dispid
(
HTMLDOMNode
*
iface
,
BSTR
name
,
...
...
dlls/mshtml/htmlframebase.c
View file @
6b793e94
This diff is collapsed.
Click to expand it.
dlls/mshtml/htmliframe.c
View file @
6b793e94
...
...
@@ -223,7 +223,7 @@ static HRESULT HTMLIFrame_get_readystate(HTMLDOMNode *iface, BSTR *p)
{
HTMLIFrame
*
This
=
impl_from_HTMLDOMNode
(
iface
);
return
IHTMLFrameBase2_get_readyState
(
HTMLFRAMEBASE2
(
&
This
->
framebase
)
,
p
);
return
IHTMLFrameBase2_get_readyState
(
&
This
->
framebase
.
IHTMLFrameBase2_iface
,
p
);
}
static
HRESULT
HTMLIFrame_bind_to_tree
(
HTMLDOMNode
*
iface
)
...
...
dlls/mshtml/htmlwindow.c
View file @
6b793e94
...
...
@@ -1610,7 +1610,7 @@ static HRESULT WINAPI HTMLWindow4_get_frameElement(IHTMLWindow4 *iface, IHTMLFra
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
if
(
This
->
frame_element
)
{
*
p
=
HTMLFRAMEBASE
(
This
->
frame_element
)
;
*
p
=
&
This
->
frame_element
->
IHTMLFrameBase_iface
;
IHTMLFrameBase_AddRef
(
*
p
);
}
else
*
p
=
NULL
;
...
...
dlls/mshtml/mshtml_private.h
View file @
6b793e94
...
...
@@ -575,8 +575,8 @@ typedef struct {
struct
HTMLFrameBase
{
HTMLElement
element
;
const
IHTMLFrameBaseVtbl
*
lpIHTMLFrameBaseVtbl
;
const
IHTMLFrameBase2Vtbl
*
lpIHTMLFrameBase2Vtbl
;
IHTMLFrameBase
IHTMLFrameBase_iface
;
IHTMLFrameBase2
IHTMLFrameBase2_iface
;
HTMLWindow
*
content_window
;
...
...
@@ -638,8 +638,6 @@ struct HTMLDocumentNode {
#define BINDINFO(x) ((IInternetBindInfo*) &(x)->lpInternetBindInfoVtbl);
#define HTMLTEXTCONT(x) ((IHTMLTextContainer*) &(x)->lpHTMLTextContainerVtbl)
#define HTMLFRAMEBASE(x) ((IHTMLFrameBase*) &(x)->lpIHTMLFrameBaseVtbl)
#define HTMLFRAMEBASE2(x) ((IHTMLFrameBase2*) &(x)->lpIHTMLFrameBase2Vtbl)
#define HTMLOPTFACTORY(x) ((IHTMLOptionElementFactory*) &(x)->lpHTMLOptionElementFactoryVtbl)
#define HTMLIMGFACTORY(x) ((IHTMLImageElementFactory*) &(x)->lpHTMLImageElementFactoryVtbl)
...
...
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