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
d3f456d1
Commit
d3f456d1
authored
Jan 09, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Jan 10, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Don't forward get_namespaceURI calls to node's IXMLDOMNode iface.
parent
730fa1e7
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
23 additions
and
19 deletions
+23
-19
attribute.c
dlls/msxml3/attribute.c
+2
-1
cdata.c
dlls/msxml3/cdata.c
+2
-1
comment.c
dlls/msxml3/comment.c
+2
-1
docfrag.c
dlls/msxml3/docfrag.c
+2
-1
domdoc.c
dlls/msxml3/domdoc.c
+2
-1
element.c
dlls/msxml3/element.c
+2
-1
entityref.c
dlls/msxml3/entityref.c
+2
-1
msxml_private.h
dlls/msxml3/msxml_private.h
+1
-0
node.c
dlls/msxml3/node.c
+4
-10
pi.c
dlls/msxml3/pi.c
+2
-1
text.c
dlls/msxml3/text.c
+2
-1
No files found.
dlls/msxml3/attribute.c
View file @
d3f456d1
...
...
@@ -504,7 +504,8 @@ static HRESULT WINAPI domattr_get_namespaceURI(
BSTR
*
p
)
{
domattr
*
This
=
impl_from_IXMLDOMAttribute
(
iface
);
return
IXMLDOMNode_get_namespaceURI
(
IXMLDOMNode_from_impl
(
&
This
->
node
),
p
);
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
node_get_namespaceURI
(
&
This
->
node
,
p
);
}
static
HRESULT
WINAPI
domattr_get_prefix
(
...
...
dlls/msxml3/cdata.c
View file @
d3f456d1
...
...
@@ -515,7 +515,8 @@ static HRESULT WINAPI domcdata_get_namespaceURI(
BSTR
*
p
)
{
domcdata
*
This
=
impl_from_IXMLDOMCDATASection
(
iface
);
return
IXMLDOMNode_get_namespaceURI
(
IXMLDOMNode_from_impl
(
&
This
->
node
),
p
);
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
node_get_namespaceURI
(
&
This
->
node
,
p
);
}
static
HRESULT
WINAPI
domcdata_get_prefix
(
...
...
dlls/msxml3/comment.c
View file @
d3f456d1
...
...
@@ -508,7 +508,8 @@ static HRESULT WINAPI domcomment_get_namespaceURI(
BSTR
*
p
)
{
domcomment
*
This
=
impl_from_IXMLDOMComment
(
iface
);
return
IXMLDOMNode_get_namespaceURI
(
IXMLDOMNode_from_impl
(
&
This
->
node
),
p
);
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
node_get_namespaceURI
(
&
This
->
node
,
p
);
}
static
HRESULT
WINAPI
domcomment_get_prefix
(
...
...
dlls/msxml3/docfrag.c
View file @
d3f456d1
...
...
@@ -512,7 +512,8 @@ static HRESULT WINAPI domfrag_get_namespaceURI(
BSTR
*
p
)
{
domfrag
*
This
=
impl_from_IXMLDOMDocumentFragment
(
iface
);
return
IXMLDOMNode_get_namespaceURI
(
IXMLDOMNode_from_impl
(
&
This
->
node
),
p
);
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
node_get_namespaceURI
(
&
This
->
node
,
p
);
}
static
HRESULT
WINAPI
domfrag_get_prefix
(
...
...
dlls/msxml3/domdoc.c
View file @
d3f456d1
...
...
@@ -1425,7 +1425,8 @@ static HRESULT WINAPI domdoc_get_namespaceURI(
BSTR
*
namespaceURI
)
{
domdoc
*
This
=
impl_from_IXMLDOMDocument3
(
iface
);
return
IXMLDOMNode_get_namespaceURI
(
IXMLDOMNode_from_impl
(
&
This
->
node
),
namespaceURI
);
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
namespaceURI
);
return
node_get_namespaceURI
(
&
This
->
node
,
namespaceURI
);
}
...
...
dlls/msxml3/element.c
View file @
d3f456d1
...
...
@@ -964,7 +964,8 @@ static HRESULT WINAPI domelem_get_namespaceURI(
BSTR
*
p
)
{
domelem
*
This
=
impl_from_IXMLDOMElement
(
iface
);
return
IXMLDOMNode_get_namespaceURI
(
IXMLDOMNode_from_impl
(
&
This
->
node
),
p
);
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
node_get_namespaceURI
(
&
This
->
node
,
p
);
}
static
HRESULT
WINAPI
domelem_get_prefix
(
...
...
dlls/msxml3/entityref.c
View file @
d3f456d1
...
...
@@ -506,7 +506,8 @@ static HRESULT WINAPI entityref_get_namespaceURI(
BSTR
*
p
)
{
entityref
*
This
=
impl_from_IXMLDOMEntityReference
(
iface
);
return
IXMLDOMNode_get_namespaceURI
(
IXMLDOMNode_from_impl
(
&
This
->
node
),
p
);
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
node_get_namespaceURI
(
&
This
->
node
,
p
);
}
static
HRESULT
WINAPI
entityref_get_prefix
(
...
...
dlls/msxml3/msxml_private.h
View file @
d3f456d1
...
...
@@ -273,6 +273,7 @@ extern HRESULT node_get_xml(xmlnode*,BOOL,BOOL,BSTR*);
extern
HRESULT
node_clone
(
xmlnode
*
,
VARIANT_BOOL
,
IXMLDOMNode
**
);
extern
HRESULT
node_get_prefix
(
xmlnode
*
,
BSTR
*
);
extern
HRESULT
node_get_base_name
(
xmlnode
*
,
BSTR
*
);
extern
HRESULT
node_get_namespaceURI
(
xmlnode
*
,
BSTR
*
);
extern
HRESULT
DOMDocument_create_from_xmldoc
(
xmlDocPtr
xmldoc
,
IXMLDOMDocument3
**
document
);
extern
HRESULT
SchemaCache_validate_tree
(
IXMLDOMSchemaCollection2
*
iface
,
xmlNodePtr
tree
);
...
...
dlls/msxml3/node.c
View file @
d3f456d1
...
...
@@ -1079,15 +1079,10 @@ static HRESULT WINAPI xmlnode_selectSingleNode(
return
r
;
}
static
HRESULT
WINAPI
xmlnode_get_namespaceURI
(
IXMLDOMNode
*
iface
,
BSTR
*
namespaceURI
)
HRESULT
node_get_namespaceURI
(
xmlnode
*
This
,
BSTR
*
namespaceURI
)
{
xmlnode
*
This
=
impl_from_IXMLDOMNode
(
iface
);
xmlNsPtr
*
ns
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
namespaceURI
);
if
(
!
namespaceURI
)
return
E_INVALIDARG
;
...
...
@@ -1174,9 +1169,7 @@ static const struct IXMLDOMNodeVtbl xmlnode_vtbl =
NULL
,
xmlnode_transformNode
,
xmlnode_selectNodes
,
xmlnode_selectSingleNode
,
NULL
,
xmlnode_get_namespaceURI
xmlnode_selectSingleNode
};
void
destroy_xmlnode
(
xmlnode
*
This
)
...
...
@@ -1672,7 +1665,8 @@ static HRESULT WINAPI unknode_get_namespaceURI(
BSTR
*
p
)
{
unknode
*
This
=
impl_from_unkIXMLDOMNode
(
iface
);
return
IXMLDOMNode_get_namespaceURI
(
IXMLDOMNode_from_impl
(
&
This
->
node
),
p
);
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
node_get_namespaceURI
(
&
This
->
node
,
p
);
}
static
HRESULT
WINAPI
unknode_get_prefix
(
...
...
dlls/msxml3/pi.c
View file @
d3f456d1
...
...
@@ -523,7 +523,8 @@ static HRESULT WINAPI dom_pi_get_namespaceURI(
BSTR
*
p
)
{
dom_pi
*
This
=
impl_from_IXMLDOMProcessingInstruction
(
iface
);
return
IXMLDOMNode_get_namespaceURI
(
IXMLDOMNode_from_impl
(
&
This
->
node
),
p
);
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
node_get_namespaceURI
(
&
This
->
node
,
p
);
}
static
HRESULT
WINAPI
dom_pi_get_prefix
(
...
...
dlls/msxml3/text.c
View file @
d3f456d1
...
...
@@ -593,7 +593,8 @@ static HRESULT WINAPI domtext_get_namespaceURI(
BSTR
*
p
)
{
domtext
*
This
=
impl_from_IXMLDOMText
(
iface
);
return
IXMLDOMNode_get_namespaceURI
(
IXMLDOMNode_from_impl
(
&
This
->
node
),
p
);
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
node_get_namespaceURI
(
&
This
->
node
,
p
);
}
static
HRESULT
WINAPI
domtext_get_prefix
(
...
...
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