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
e80a3435
Commit
e80a3435
authored
Jul 15, 2014
by
Zhenbo Li
Committed by
Alexandre Julliard
Jul 15, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added support for IHTMLTable[23] interfaces in HTMLTable.
parent
906c3417
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
htmltable.c
dlls/mshtml/htmltable.c
+4
-2
No files found.
dlls/mshtml/htmltable.c
View file @
e80a3435
...
@@ -914,10 +914,10 @@ static HRESULT HTMLTable_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
...
@@ -914,10 +914,10 @@ static HRESULT HTMLTable_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
*
ppv
=
&
This
->
IHTMLTable_iface
;
*
ppv
=
&
This
->
IHTMLTable_iface
;
}
else
if
(
IsEqualGUID
(
&
IID_IHTMLTable2
,
riid
))
{
}
else
if
(
IsEqualGUID
(
&
IID_IHTMLTable2
,
riid
))
{
TRACE
(
"(%p)->(IID_IHTMLTable2 %p)
\n
"
,
This
,
ppv
);
TRACE
(
"(%p)->(IID_IHTMLTable2 %p)
\n
"
,
This
,
ppv
);
*
ppv
=
&
This
->
IHTMLTable_iface
;
*
ppv
=
&
This
->
IHTMLTable
2
_iface
;
}
else
if
(
IsEqualGUID
(
&
IID_IHTMLTable3
,
riid
))
{
}
else
if
(
IsEqualGUID
(
&
IID_IHTMLTable3
,
riid
))
{
TRACE
(
"(%p)->(IID_IHTMLTable3 %p)
\n
"
,
This
,
ppv
);
TRACE
(
"(%p)->(IID_IHTMLTable3 %p)
\n
"
,
This
,
ppv
);
*
ppv
=
&
This
->
IHTMLTable_iface
;
*
ppv
=
&
This
->
IHTMLTable
3
_iface
;
}
}
if
(
*
ppv
)
{
if
(
*
ppv
)
{
...
@@ -969,6 +969,8 @@ HRESULT HTMLTable_Create(HTMLDocumentNode *doc, nsIDOMHTMLElement *nselem, HTMLE
...
@@ -969,6 +969,8 @@ HRESULT HTMLTable_Create(HTMLDocumentNode *doc, nsIDOMHTMLElement *nselem, HTMLE
ret
->
element
.
node
.
vtbl
=
&
HTMLTableImplVtbl
;
ret
->
element
.
node
.
vtbl
=
&
HTMLTableImplVtbl
;
ret
->
IHTMLTable_iface
.
lpVtbl
=
&
HTMLTableVtbl
;
ret
->
IHTMLTable_iface
.
lpVtbl
=
&
HTMLTableVtbl
;
ret
->
IHTMLTable2_iface
.
lpVtbl
=
&
HTMLTable2Vtbl
;
ret
->
IHTMLTable3_iface
.
lpVtbl
=
&
HTMLTable3Vtbl
;
HTMLElement_Init
(
&
ret
->
element
,
doc
,
nselem
,
&
HTMLTable_dispex
);
HTMLElement_Init
(
&
ret
->
element
,
doc
,
nselem
,
&
HTMLTable_dispex
);
...
...
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