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
40cfcf51
Commit
40cfcf51
authored
Jun 24, 2007
by
Jacek Caban
Committed by
Alexandre Julliard
Jun 25, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IHTMLDOMNode::get_nodeName implementation.
parent
f6daa348
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
2 deletions
+24
-2
htmlnode.c
dlls/mshtml/htmlnode.c
+24
-2
No files found.
dlls/mshtml/htmlnode.c
View file @
40cfcf51
...
...
@@ -214,8 +214,30 @@ static HRESULT WINAPI HTMLDOMNode_appendChild(IHTMLDOMNode *iface, IHTMLDOMNode
static
HRESULT
WINAPI
HTMLDOMNode_get_nodeName
(
IHTMLDOMNode
*
iface
,
BSTR
*
p
)
{
HTMLDOMNode
*
This
=
HTMLDOMNODE_THIS
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
*
p
=
NULL
;
if
(
This
->
nsnode
)
{
nsAString
name_str
;
const
PRUnichar
*
name
;
nsresult
nsres
;
nsAString_Init
(
&
name_str
,
NULL
);
nsres
=
nsIDOMNode_GetNodeName
(
This
->
nsnode
,
&
name_str
);
if
(
NS_SUCCEEDED
(
nsres
))
{
nsAString_GetData
(
&
name_str
,
&
name
,
NULL
);
*
p
=
SysAllocString
(
name
);
}
else
{
ERR
(
"GetNodeName failed: %08x
\n
"
,
nsres
);
}
nsAString_Finish
(
&
name_str
);
}
return
S_OK
;
}
static
HRESULT
WINAPI
HTMLDOMNode_put_nodeValue
(
IHTMLDOMNode
*
iface
,
VARIANT
v
)
...
...
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