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
a6594da4
Commit
a6594da4
authored
Nov 29, 2008
by
Michael Karcher
Committed by
Alexandre Julliard
Dec 01, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Quiet noisy fixmes.
The FIXME messages for unknown interfaces should not be emitted for interfaces that should not get implemented. Origin 8 spams you with these messsages.
parent
aefe3456
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
cdata.c
dlls/msxml3/cdata.c
+6
-0
text.c
dlls/msxml3/text.c
+7
-0
No files found.
dlls/msxml3/cdata.c
View file @
a6594da4
...
...
@@ -69,6 +69,12 @@ static HRESULT WINAPI domcdata_QueryInterface(
{
return
IUnknown_QueryInterface
(
This
->
node_unk
,
riid
,
ppvObject
);
}
else
if
(
IsEqualGUID
(
riid
,
&
IID_IXMLDOMText
)
||
IsEqualGUID
(
riid
,
&
IID_IXMLDOMElement
)
)
{
TRACE
(
"Unsupported interface
\n
"
);
return
E_NOINTERFACE
;
}
else
{
FIXME
(
"Unsupported interface %s
\n
"
,
debugstr_guid
(
riid
));
...
...
dlls/msxml3/text.c
View file @
a6594da4
...
...
@@ -70,6 +70,13 @@ static HRESULT WINAPI domtext_QueryInterface(
{
return
IUnknown_QueryInterface
(
This
->
node_unk
,
riid
,
ppvObject
);
}
else
if
(
IsEqualGUID
(
riid
,
&
IID_IXMLDOMElement
)
||
IsEqualGUID
(
riid
,
&
IID_IXMLDOMCDATASection
)
)
{
/* IXMLDOMText is known to be correct in not implementing these */
TRACE
(
"Unsupported interface
\n
"
);
return
E_NOINTERFACE
;
}
else
{
FIXME
(
"Unsupported interface %s
\n
"
,
debugstr_guid
(
riid
));
...
...
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