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
37f61acb
Commit
37f61acb
authored
Sep 08, 2010
by
Joris Huizer
Committed by
Alexandre Julliard
Sep 09, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Fix copy/paste error in get_lastChild functions.
parent
2fd50cb4
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
attribute.c
dlls/msxml3/attribute.c
+1
-1
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
node.c
dlls/msxml3/node.c
+1
-1
No files found.
dlls/msxml3/attribute.c
View file @
37f61acb
...
...
@@ -263,7 +263,7 @@ static HRESULT WINAPI domattr_get_lastChild(
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
domNode
);
return
node_get_
fir
st_child
(
&
This
->
node
,
domNode
);
return
node_get_
la
st_child
(
&
This
->
node
,
domNode
);
}
static
HRESULT
WINAPI
domattr_get_previousSibling
(
...
...
dlls/msxml3/docfrag.c
View file @
37f61acb
...
...
@@ -269,7 +269,7 @@ static HRESULT WINAPI domfrag_get_lastChild(
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
domNode
);
return
node_get_
fir
st_child
(
&
This
->
node
,
domNode
);
return
node_get_
la
st_child
(
&
This
->
node
,
domNode
);
}
static
HRESULT
WINAPI
domfrag_get_previousSibling
(
...
...
dlls/msxml3/domdoc.c
View file @
37f61acb
...
...
@@ -779,7 +779,7 @@ static HRESULT WINAPI domdoc_get_lastChild(
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
lastChild
);
return
node_get_
fir
st_child
(
&
This
->
node
,
lastChild
);
return
node_get_
la
st_child
(
&
This
->
node
,
lastChild
);
}
...
...
dlls/msxml3/element.c
View file @
37f61acb
...
...
@@ -278,7 +278,7 @@ static HRESULT WINAPI domelem_get_lastChild(
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
domNode
);
return
node_get_
fir
st_child
(
&
This
->
node
,
domNode
);
return
node_get_
la
st_child
(
&
This
->
node
,
domNode
);
}
static
HRESULT
WINAPI
domelem_get_previousSibling
(
...
...
dlls/msxml3/entityref.c
View file @
37f61acb
...
...
@@ -265,7 +265,7 @@ static HRESULT WINAPI entityref_get_lastChild(
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
domNode
);
return
node_get_
fir
st_child
(
&
This
->
node
,
domNode
);
return
node_get_
la
st_child
(
&
This
->
node
,
domNode
);
}
static
HRESULT
WINAPI
entityref_get_previousSibling
(
...
...
dlls/msxml3/node.c
View file @
37f61acb
...
...
@@ -1844,7 +1844,7 @@ static HRESULT WINAPI unknode_get_lastChild(
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
domNode
);
return
node_get_
fir
st_child
(
&
This
->
node
,
domNode
);
return
node_get_
la
st_child
(
&
This
->
node
,
domNode
);
}
static
HRESULT
WINAPI
unknode_get_previousSibling
(
...
...
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