Set the command using the enumerated type rather than the string type.

This commit is contained in:
tbogard%aol.net 2000-03-29 06:10:04 +00:00
Родитель 58e714ce51
Коммит beaea69674
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1147,7 +1147,7 @@ NS_IMETHODIMP nsXULKeyListenerImpl::LoadKeyBindingDocument(nsIURI* aURI, nsIDOMX
NS_ASSERTION(NS_SUCCEEDED(rv), "unable to create parser");
if (NS_FAILED(rv)) return rv;
parser->SetCommand("view");
parser->SetCommand(eViewNormal);
nsAutoString utf8("UTF-8");
parser->SetDocumentCharset(utf8, kCharsetFromDocTypeDefault);