зеркало из https://github.com/mozilla/gecko-dev.git
call GetIsDocumentEditable which will check CanModify for us; r=jfrancis, sr=blizzard, bug=209548
This commit is contained in:
Родитель
1dc8f45c00
Коммит
b66b6a8011
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче