This commit is contained in:
Olli Pettay 2008-10-08 14:13:26 +03:00
Родитель 8ff3e52296
Коммит 5a14040570
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -112,6 +112,7 @@ public:
PRBool aNullParent = PR_TRUE);
NS_DECL_NSIMUTATIONOBSERVER_ATTRIBUTECHANGED
NS_DECL_NSIMUTATIONOBSERVER_NODEWILLBEDESTROYED
virtual nsGenericDOMDataNode *CloneDataNode(nsINodeInfo *aNodeInfo,
PRBool aCloneText) const
@ -358,6 +359,13 @@ nsAttributeTextNode::AttributeChanged(nsIDocument* aDocument,
}
}
void
nsAttributeTextNode::NodeWillBeDestroyed(const nsINode* aNode)
{
NS_ASSERTION(aNode == static_cast<nsINode*>(mGrandparent), "Wrong node!");
mGrandparent = nsnull;
}
void
nsAttributeTextNode::UpdateText(PRBool aNotify)
{