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
9176c9e8
Commit
9176c9e8
authored
Mar 13, 2011
by
Nikolay Sivov
Committed by
Alexandre Julliard
Mar 14, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Downgrade FIXME to TRACE for unsupported interfaces.
parent
49d69e44
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
14 additions
and
19 deletions
+14
-19
attribute.c
dlls/msxml3/attribute.c
+1
-1
cdata.c
dlls/msxml3/cdata.c
+1
-1
comment.c
dlls/msxml3/comment.c
+1
-1
docfrag.c
dlls/msxml3/docfrag.c
+1
-1
doctype.c
dlls/msxml3/doctype.c
+1
-1
domdoc.c
dlls/msxml3/domdoc.c
+1
-6
domimpl.c
dlls/msxml3/domimpl.c
+1
-1
element.c
dlls/msxml3/element.c
+1
-1
entityref.c
dlls/msxml3/entityref.c
+1
-1
nodelist.c
dlls/msxml3/nodelist.c
+1
-1
nodemap.c
dlls/msxml3/nodemap.c
+1
-1
pi.c
dlls/msxml3/pi.c
+1
-1
selection.c
dlls/msxml3/selection.c
+1
-1
text.c
dlls/msxml3/text.c
+1
-1
No files found.
dlls/msxml3/attribute.c
View file @
9176c9e8
...
...
@@ -76,7 +76,7 @@ static HRESULT WINAPI domattr_QueryInterface(
}
else
{
FIXM
E
(
"Unsupported interface %s
\n
"
,
debugstr_guid
(
riid
));
TRAC
E
(
"Unsupported interface %s
\n
"
,
debugstr_guid
(
riid
));
*
ppvObject
=
NULL
;
return
E_NOINTERFACE
;
}
...
...
dlls/msxml3/cdata.c
View file @
9176c9e8
...
...
@@ -76,7 +76,7 @@ static HRESULT WINAPI domcdata_QueryInterface(
}
else
{
FIXM
E
(
"Unsupported interface %s
\n
"
,
debugstr_guid
(
riid
));
TRAC
E
(
"Unsupported interface %s
\n
"
,
debugstr_guid
(
riid
));
*
ppvObject
=
NULL
;
return
E_NOINTERFACE
;
}
...
...
dlls/msxml3/comment.c
View file @
9176c9e8
...
...
@@ -76,7 +76,7 @@ static HRESULT WINAPI domcomment_QueryInterface(
}
else
{
FIXM
E
(
"Unsupported interface %s
\n
"
,
debugstr_guid
(
riid
));
TRAC
E
(
"Unsupported interface %s
\n
"
,
debugstr_guid
(
riid
));
*
ppvObject
=
NULL
;
return
E_NOINTERFACE
;
}
...
...
dlls/msxml3/docfrag.c
View file @
9176c9e8
...
...
@@ -75,7 +75,7 @@ static HRESULT WINAPI domfrag_QueryInterface(
}
else
{
FIXM
E
(
"Unsupported interface %s
\n
"
,
debugstr_guid
(
riid
));
TRAC
E
(
"Unsupported interface %s
\n
"
,
debugstr_guid
(
riid
));
*
ppvObject
=
NULL
;
return
E_NOINTERFACE
;
}
...
...
dlls/msxml3/doctype.c
View file @
9176c9e8
...
...
@@ -77,7 +77,7 @@ static HRESULT WINAPI domdoctype_QueryInterface(
}
else
{
FIXM
E
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
TRAC
E
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
*
ppvObject
=
NULL
;
return
E_NOINTERFACE
;
}
...
...
dlls/msxml3/domdoc.c
View file @
9176c9e8
...
...
@@ -916,14 +916,9 @@ static HRESULT WINAPI domdoc_QueryInterface( IXMLDOMDocument3 *iface, REFIID rii
{
*
ppvObject
=
&
This
->
lpVtblConnectionPointContainer
;
}
else
if
(
IsEqualGUID
(
&
IID_IRunnableObject
,
riid
))
{
TRACE
(
"IID_IRunnableObject not supported returning NULL
\n
"
);
return
E_NOINTERFACE
;
}
else
{
FIXM
E
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
TRAC
E
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
return
E_NOINTERFACE
;
}
...
...
dlls/msxml3/domimpl.c
View file @
9176c9e8
...
...
@@ -69,7 +69,7 @@ static HRESULT WINAPI dimimpl_QueryInterface(
}
else
{
FIXM
E
(
"Unsupported interface %s
\n
"
,
debugstr_guid
(
riid
));
TRAC
E
(
"Unsupported interface %s
\n
"
,
debugstr_guid
(
riid
));
*
ppvObject
=
NULL
;
return
E_NOINTERFACE
;
}
...
...
dlls/msxml3/element.c
View file @
9176c9e8
...
...
@@ -85,7 +85,7 @@ static HRESULT WINAPI domelem_QueryInterface(
}
else
{
FIXM
E
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
TRAC
E
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
*
ppvObject
=
NULL
;
return
E_NOINTERFACE
;
}
...
...
dlls/msxml3/entityref.c
View file @
9176c9e8
...
...
@@ -75,7 +75,7 @@ static HRESULT WINAPI entityref_QueryInterface(
}
else
{
FIXM
E
(
"Unsupported interface %s
\n
"
,
debugstr_guid
(
riid
));
TRAC
E
(
"Unsupported interface %s
\n
"
,
debugstr_guid
(
riid
));
*
ppvObject
=
NULL
;
return
E_NOINTERFACE
;
}
...
...
dlls/msxml3/nodelist.c
View file @
9176c9e8
...
...
@@ -79,7 +79,7 @@ static HRESULT WINAPI xmlnodelist_QueryInterface(
}
else
{
FIXM
E
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
TRAC
E
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
*
ppvObject
=
NULL
;
return
E_NOINTERFACE
;
}
...
...
dlls/msxml3/nodemap.c
View file @
9176c9e8
...
...
@@ -82,7 +82,7 @@ static HRESULT WINAPI xmlnodemap_QueryInterface(
}
else
{
FIXM
E
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
TRAC
E
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
*
ppvObject
=
NULL
;
return
E_NOINTERFACE
;
}
...
...
dlls/msxml3/pi.c
View file @
9176c9e8
...
...
@@ -75,7 +75,7 @@ static HRESULT WINAPI dom_pi_QueryInterface(
}
else
{
FIXM
E
(
"Unsupported interface %s
\n
"
,
debugstr_guid
(
riid
));
TRAC
E
(
"Unsupported interface %s
\n
"
,
debugstr_guid
(
riid
));
*
ppvObject
=
NULL
;
return
E_NOINTERFACE
;
}
...
...
dlls/msxml3/selection.c
View file @
9176c9e8
...
...
@@ -97,7 +97,7 @@ static HRESULT WINAPI domselection_QueryInterface(
}
else
{
FIXM
E
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
TRAC
E
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
*
ppvObject
=
NULL
;
return
E_NOINTERFACE
;
}
...
...
dlls/msxml3/text.c
View file @
9176c9e8
...
...
@@ -77,7 +77,7 @@ static HRESULT WINAPI domtext_QueryInterface(
}
else
{
FIXM
E
(
"Unsupported interface %s
\n
"
,
debugstr_guid
(
riid
));
TRAC
E
(
"Unsupported interface %s
\n
"
,
debugstr_guid
(
riid
));
*
ppvObject
=
NULL
;
return
E_NOINTERFACE
;
}
...
...
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