Rename {nsIDocument,nsIDocumentObserver,nsIFrame}::ContentChanged to CharacterDataChanged, since that's the only thing it's used for. Replace its nsISupports* parameter with a PRBool, since we don't need to allocate an object to pass a boolean parameter. Remove some (but probably not all) unneeded implementations on frames whose content is never a text node. b=234960 r+sr=jst

This commit is contained in:
dbaron%dbaron.org 2006-05-17 02:38:26 +00:00
Родитель 8bf02835a0
Коммит 0718f82a18
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -766,9 +766,9 @@ inDOMView::ContentAppended(nsIDocument *aDocument,
}
void
inDOMView::ContentChanged(nsIDocument *aDocument,
nsIContent* aContent,
nsISupports* aSubContent)
inDOMView::CharacterDataChanged(nsIDocument *aDocument,
nsIContent* aContent,
PRBool aAppend)
{
}