call GetIsDocumentEditable which will check CanModify for us; r=jfrancis, sr=blizzard, bug=209548

This commit is contained in:
brade%netscape.com 2003-07-18 14:06:21 +00:00
Родитель 1dc8f45c00
Коммит b66b6a8011
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -708,9 +708,9 @@ nsInsertPlaintextCommand::IsCommandEnabled(const char * aCommandName,
PRBool *outCmdEnabled)
{
NS_ENSURE_ARG_POINTER(outCmdEnabled);
nsCOMPtr<nsIPlaintextEditor> editor = do_QueryInterface(refCon);
nsCOMPtr<nsIEditor> editor = do_QueryInterface(refCon);
if (editor)
return editor->GetCanModify(outCmdEnabled);
return editor->GetIsDocumentEditable(outCmdEnabled);
*outCmdEnabled = PR_FALSE;
return NS_ERROR_NOT_IMPLEMENTED;