msxml3: Fix copy/paste error in get_lastChild functions.

This commit is contained in:
Joris Huizer 2010-09-08 21:55:37 +02:00 committed by Alexandre Julliard
parent 2fd50cb4b8
commit 37f61acb77
6 changed files with 6 additions and 6 deletions

View File

@ -263,7 +263,7 @@ static HRESULT WINAPI domattr_get_lastChild(
TRACE("(%p)->(%p)\n", This, domNode);
return node_get_first_child(&This->node, domNode);
return node_get_last_child(&This->node, domNode);
}
static HRESULT WINAPI domattr_get_previousSibling(

View File

@ -269,7 +269,7 @@ static HRESULT WINAPI domfrag_get_lastChild(
TRACE("(%p)->(%p)\n", This, domNode);
return node_get_first_child(&This->node, domNode);
return node_get_last_child(&This->node, domNode);
}
static HRESULT WINAPI domfrag_get_previousSibling(

View File

@ -779,7 +779,7 @@ static HRESULT WINAPI domdoc_get_lastChild(
TRACE("(%p)->(%p)\n", This, lastChild);
return node_get_first_child(&This->node, lastChild);
return node_get_last_child(&This->node, lastChild);
}

View File

@ -278,7 +278,7 @@ static HRESULT WINAPI domelem_get_lastChild(
TRACE("(%p)->(%p)\n", This, domNode);
return node_get_first_child(&This->node, domNode);
return node_get_last_child(&This->node, domNode);
}
static HRESULT WINAPI domelem_get_previousSibling(

View File

@ -265,7 +265,7 @@ static HRESULT WINAPI entityref_get_lastChild(
TRACE("(%p)->(%p)\n", This, domNode);
return node_get_first_child(&This->node, domNode);
return node_get_last_child(&This->node, domNode);
}
static HRESULT WINAPI entityref_get_previousSibling(

View File

@ -1844,7 +1844,7 @@ static HRESULT WINAPI unknode_get_lastChild(
TRACE("(%p)->(%p)\n", This, domNode);
return node_get_first_child(&This->node, domNode);
return node_get_last_child(&This->node, domNode);
}
static HRESULT WINAPI unknode_get_previousSibling(