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
ce61d9b8
Commit
ce61d9b8
authored
Jan 09, 2012
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jan 09, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Remove wrong ERR(), some renames.
parent
da8618f3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
nodemap.c
dlls/msxml3/nodemap.c
+6
-6
No files found.
dlls/msxml3/nodemap.c
View file @
ce61d9b8
...
...
@@ -245,7 +245,7 @@ static HRESULT WINAPI xmlnodemap_removeQualifiedItem(
{
xmlnodemap
*
This
=
impl_from_IXMLDOMNamedNodeMap
(
iface
);
ERR
(
"(%p)->(%s %s %p)
\n
"
,
This
,
debugstr_w
(
baseName
),
debugstr_w
(
namespaceURI
),
item
);
TRACE
(
"(%p)->(%s %s %p)
\n
"
,
This
,
debugstr_w
(
baseName
),
debugstr_w
(
namespaceURI
),
item
);
return
This
->
funcs
->
remove_qualified_item
(
This
->
node
,
baseName
,
namespaceURI
,
item
);
}
...
...
@@ -266,7 +266,7 @@ static HRESULT WINAPI xmlnodemap_reset(
{
xmlnodemap
*
This
=
impl_from_IXMLDOMNamedNodeMap
(
iface
);
TRACE
(
"(%p
:
%d)
\n
"
,
This
,
This
->
iterator
);
TRACE
(
"(%p
)->(
%d)
\n
"
,
This
,
This
->
iterator
);
This
->
iterator
=
0
;
...
...
@@ -282,7 +282,7 @@ static HRESULT WINAPI xmlnodemap__newEnum(
return
E_NOTIMPL
;
}
static
const
struct
IXMLDOMNamedNodeMapVtbl
xmlnodemap_v
tbl
=
static
const
struct
IXMLDOMNamedNodeMapVtbl
XMLDOMNamedNodeMapV
tbl
=
{
xmlnodemap_QueryInterface
,
xmlnodemap_AddRef
,
...
...
@@ -335,7 +335,7 @@ static HRESULT WINAPI support_error_InterfaceSupportsErrorInfo(
return
IsEqualGUID
(
riid
,
&
IID_IXMLDOMNamedNodeMap
)
?
S_OK
:
S_FALSE
;
}
static
const
struct
ISupportErrorInfoVtbl
support_error_v
tbl
=
static
const
struct
ISupportErrorInfoVtbl
SupportErrorInfoV
tbl
=
{
support_error_QueryInterface
,
support_error_AddRef
,
...
...
@@ -418,8 +418,8 @@ IXMLDOMNamedNodeMap *create_nodemap(xmlNodePtr node, const struct nodemap_funcs
if
(
!
This
)
return
NULL
;
This
->
IXMLDOMNamedNodeMap_iface
.
lpVtbl
=
&
xmlnodemap_v
tbl
;
This
->
ISupportErrorInfo_iface
.
lpVtbl
=
&
support_error_v
tbl
;
This
->
IXMLDOMNamedNodeMap_iface
.
lpVtbl
=
&
XMLDOMNamedNodeMapV
tbl
;
This
->
ISupportErrorInfo_iface
.
lpVtbl
=
&
SupportErrorInfoV
tbl
;
This
->
node
=
node
;
This
->
ref
=
1
;
This
->
iterator
=
0
;
...
...
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