fix for 167585: the case of the disappearing cursor.

r=cmanske; sr=kin
This commit is contained in:
jfrancis%netscape.com 2002-10-02 13:52:14 +00:00
Родитель f544bfabb6
Коммит 16165be4f9
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -1714,9 +1714,8 @@ nsHTMLEditRules::WillDeleteSelection(nsISelection *aSelection,
if (!startNode) return NS_ERROR_FAILURE;
// get the root element
nsCOMPtr<nsIDOMNode> bodyNode;
nsCOMPtr<nsIDOMElement> bodyNode;
{
nsCOMPtr<nsIDOMElement> bodyNode;
res = mHTMLEditor->GetRootElement(getter_AddRefs(bodyNode));
if (NS_FAILED(res)) return res;
if (!bodyNode) return NS_ERROR_UNEXPECTED;