Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
63bf8635
Commit
63bf8635
authored
Oct 25, 2010
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 26, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Remove returns after returns (Smatch).
That's the intent of commit
70edd9a7
.
parent
1fe54842
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
2 deletions
+0
-2
domdoc.c
dlls/msxml3/domdoc.c
+0
-2
No files found.
dlls/msxml3/domdoc.c
View file @
63bf8635
...
...
@@ -1206,7 +1206,6 @@ static HRESULT WINAPI domdoc_get_definition(
domdoc
*
This
=
impl_from_IXMLDOMDocument3
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
definitionNode
);
return
E_NOTIMPL
;
return
IXMLDOMNode_get_definition
(
IXMLDOMNode_from_impl
(
&
This
->
node
),
definitionNode
);
}
...
...
@@ -1293,7 +1292,6 @@ static HRESULT WINAPI domdoc_get_parsed(
FIXME
(
"(%p)->(%p) stub!
\n
"
,
This
,
isParsed
);
*
isParsed
=
VARIANT_TRUE
;
return
S_OK
;
return
IXMLDOMNode_get_parsed
(
IXMLDOMNode_from_impl
(
&
This
->
node
),
isParsed
);
}
...
...
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