Skip to content

Commit

Permalink
#6097: Fix xmlutil::Node::addText implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
codereader committed Sep 11, 2022
1 parent 4af30f8 commit 28819a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/xmlutil/Node.cpp
Expand Up @@ -145,7 +145,7 @@ void Node::addText(const std::string& text)
);

// Add the newly allocated text as sibling of this node
xmlAddSibling(_xmlNode, whitespace);
xmlAddNextSibling(_xmlNode, whitespace);
}

void Node::erase()
Expand Down

0 comments on commit 28819a3

Please sign in to comment.