Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
0a80e7c0
Commit
0a80e7c0
authored
Jan 04, 2008
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Jan 04, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Add missing values for get_nodeName.
parent
300191d5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
4 deletions
+18
-4
node.c
dlls/msxml3/node.c
+18
-4
No files found.
dlls/msxml3/node.c
View file @
0a80e7c0
...
@@ -159,13 +159,27 @@ static HRESULT WINAPI xmlnode_get_nodeName(
...
@@ -159,13 +159,27 @@ static HRESULT WINAPI xmlnode_get_nodeName(
switch
(
This
->
node
->
type
)
switch
(
This
->
node
->
type
)
{
{
case
XML_TEXT_NODE
:
case
XML_CDATA_SECTION_NODE
:
str
=
(
const
xmlChar
*
)
"#text"
;
str
=
(
const
xmlChar
*
)
"#cdata-section"
;
break
;
case
XML_COMMENT_NODE
:
str
=
(
const
xmlChar
*
)
"#comment"
;
break
;
case
XML_DOCUMENT_FRAG_NODE
:
str
=
(
const
xmlChar
*
)
"#document-fragment"
;
break
;
break
;
case
XML_TEXT_NODE
:
str
=
(
const
xmlChar
*
)
"#text"
;
break
;
case
XML_DOCUMENT_NODE
:
case
XML_DOCUMENT_NODE
:
str
=
(
const
xmlChar
*
)
"#document"
;
str
=
(
const
xmlChar
*
)
"#document"
;
break
;
break
;
case
XML_ATTRIBUTE_NODE
:
case
XML_ELEMENT_NODE
:
str
=
This
->
node
->
name
;
break
;
default:
default:
FIXME
(
"nodeName not mapped correctly (%d)
\n
"
,
This
->
node
->
type
);
str
=
This
->
node
->
name
;
str
=
This
->
node
->
name
;
break
;
break
;
}
}
...
...
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