Nikolay Sivov : msxml3: For tested cases use TRACE instead of FIXME.

Alexandre Julliard julliard at winehq.org
Fri Nov 5 13:47:16 CDT 2010


Module: wine
Branch: master
Commit: a353a91f3292b2f1019a9d6c4cdafa6bc04be3c9
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=a353a91f3292b2f1019a9d6c4cdafa6bc04be3c9

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Thu Nov  4 19:14:04 2010 +0300

msxml3: For tested cases use TRACE instead of FIXME.

---

 dlls/msxml3/docfrag.c   |    2 +-
 dlls/msxml3/domdoc.c    |    2 +-
 dlls/msxml3/element.c   |    2 +-
 dlls/msxml3/entityref.c |    2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/msxml3/docfrag.c b/dlls/msxml3/docfrag.c
index 792298c..ec86579 100644
--- a/dlls/msxml3/docfrag.c
+++ b/dlls/msxml3/docfrag.c
@@ -212,7 +212,7 @@ static HRESULT WINAPI domfrag_put_nodeValue(
     VARIANT value)
 {
     domfrag *This = impl_from_IXMLDOMDocumentFragment( iface );
-    FIXME("(%p)->(v%d)\n", This, V_VT(&value));
+    TRACE("(%p)->(v%d)\n", This, V_VT(&value));
     return E_FAIL;
 }
 
diff --git a/dlls/msxml3/domdoc.c b/dlls/msxml3/domdoc.c
index 2596630..8e12098 100644
--- a/dlls/msxml3/domdoc.c
+++ b/dlls/msxml3/domdoc.c
@@ -1009,7 +1009,7 @@ static HRESULT WINAPI domdoc_put_nodeValue(
     VARIANT value)
 {
     domdoc *This = impl_from_IXMLDOMDocument3( iface );
-    FIXME("(%p)->(v%d)\n", This, V_VT(&value));
+    TRACE("(%p)->(v%d)\n", This, V_VT(&value));
     return E_FAIL;
 }
 
diff --git a/dlls/msxml3/element.c b/dlls/msxml3/element.c
index 418307e..1400088 100644
--- a/dlls/msxml3/element.c
+++ b/dlls/msxml3/element.c
@@ -221,7 +221,7 @@ static HRESULT WINAPI domelem_put_nodeValue(
     VARIANT value)
 {
     domelem *This = impl_from_IXMLDOMElement( iface );
-    FIXME("(%p)->(v%d)\n", This, V_VT(&value));
+    TRACE("(%p)->(v%d)\n", This, V_VT(&value));
     return E_FAIL;
 }
 
diff --git a/dlls/msxml3/entityref.c b/dlls/msxml3/entityref.c
index 308b9ce..570d711 100644
--- a/dlls/msxml3/entityref.c
+++ b/dlls/msxml3/entityref.c
@@ -208,7 +208,7 @@ static HRESULT WINAPI entityref_put_nodeValue(
     VARIANT value)
 {
     entityref *This = impl_from_IXMLDOMEntityReference( iface );
-    FIXME("(%p)->(v%d)\n", This, V_VT(&value));
+    TRACE("(%p)->(v%d)\n", This, V_VT(&value));
     return E_FAIL;
 }
 




More information about the wine-cvs mailing list