Apply patch [ 1554746 ] wxXmlNode::InsertChild fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41084 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2006-09-09 11:32:10 +00:00
parent afd7bf26f1
commit fa6a837300
3 changed files with 27 additions and 5 deletions

View File

@@ -213,9 +213,12 @@ Returns \true if this node has a property named {\it propName}.
\membersection{wxXmlNode::InsertChild}\label{wxxmlnodeinsertchild}
\func{void}{InsertChild}{\param{wxXmlNode* }{child}, \param{wxXmlNode* }{before\_node}}
\func{bool}{InsertChild}{\param{wxXmlNode* }{child}, \param{wxXmlNode* }{before\_node}}
Inserts the {\it child} node after {\it before\_node} in the children list.
If {\it before\_node} is \NULL, then {\it child} is prepended to the list of children and
becomes the first child of this node.
Returns \true if {\it before\_node} has been found and the {\it child} node has been inserted.
\membersection{wxXmlNode::RemoveChild}\label{wxxmlnoderemovechild}