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
a353a91f
Commit
a353a91f
authored
Nov 04, 2010
by
Nikolay Sivov
Committed by
Alexandre Julliard
Nov 05, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: For tested cases use TRACE instead of FIXME.
parent
8f976c5d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
docfrag.c
dlls/msxml3/docfrag.c
+1
-1
domdoc.c
dlls/msxml3/domdoc.c
+1
-1
element.c
dlls/msxml3/element.c
+1
-1
entityref.c
dlls/msxml3/entityref.c
+1
-1
No files found.
dlls/msxml3/docfrag.c
View file @
a353a91f
...
...
@@ -212,7 +212,7 @@ static HRESULT WINAPI domfrag_put_nodeValue(
VARIANT
value
)
{
domfrag
*
This
=
impl_from_IXMLDOMDocumentFragment
(
iface
);
FIXM
E
(
"(%p)->(v%d)
\n
"
,
This
,
V_VT
(
&
value
));
TRAC
E
(
"(%p)->(v%d)
\n
"
,
This
,
V_VT
(
&
value
));
return
E_FAIL
;
}
...
...
dlls/msxml3/domdoc.c
View file @
a353a91f
...
...
@@ -1009,7 +1009,7 @@ static HRESULT WINAPI domdoc_put_nodeValue(
VARIANT
value
)
{
domdoc
*
This
=
impl_from_IXMLDOMDocument3
(
iface
);
FIXM
E
(
"(%p)->(v%d)
\n
"
,
This
,
V_VT
(
&
value
));
TRAC
E
(
"(%p)->(v%d)
\n
"
,
This
,
V_VT
(
&
value
));
return
E_FAIL
;
}
...
...
dlls/msxml3/element.c
View file @
a353a91f
...
...
@@ -221,7 +221,7 @@ static HRESULT WINAPI domelem_put_nodeValue(
VARIANT
value
)
{
domelem
*
This
=
impl_from_IXMLDOMElement
(
iface
);
FIXM
E
(
"(%p)->(v%d)
\n
"
,
This
,
V_VT
(
&
value
));
TRAC
E
(
"(%p)->(v%d)
\n
"
,
This
,
V_VT
(
&
value
));
return
E_FAIL
;
}
...
...
dlls/msxml3/entityref.c
View file @
a353a91f
...
...
@@ -208,7 +208,7 @@ static HRESULT WINAPI entityref_put_nodeValue(
VARIANT
value
)
{
entityref
*
This
=
impl_from_IXMLDOMEntityReference
(
iface
);
FIXM
E
(
"(%p)->(v%d)
\n
"
,
This
,
V_VT
(
&
value
));
TRAC
E
(
"(%p)->(v%d)
\n
"
,
This
,
V_VT
(
&
value
));
return
E_FAIL
;
}
...
...
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