mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 22:01:30 +00:00
Fix XTF build (bug 266188). Patch by doron, r=aaronr@us.ibm.com, sr=me.
This commit is contained in:
parent
aa1c016eea
commit
734755d36f
@ -123,8 +123,8 @@ NS_IMPL_ISUPPORTS1(nsXMLContentBuilder, nsIXMLContentBuilder)
|
||||
/* void clear (in nsIDOMElement root); */
|
||||
NS_IMETHODIMP nsXMLContentBuilder::Clear(nsIDOMElement *root)
|
||||
{
|
||||
mCurrent = root;
|
||||
mTop = root;
|
||||
mCurrent = do_QueryInterface(root);
|
||||
mTop = do_QueryInterface(root);
|
||||
if (mNamespaceId != kNameSpaceID_None) {
|
||||
mNamespaceId = kNameSpaceID_None;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user