This commit is contained in:
jfrancis%netscape.com 1999-11-03 00:07:37 +00:00
Родитель 3f9ff89e9b
Коммит 1e84beb217
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -142,6 +142,7 @@ nsTextEditRules::WillDoAction(nsIDOMSelection *aSelection,
case kInsertBreak:
return WillInsertBreak(aSelection, aCancel, aHandled);
case kInsertText:
case kInsertTextIME:
return WillInsertText(aSelection,
aCancel,
aHandled,
@ -149,8 +150,6 @@ nsTextEditRules::WillDoAction(nsIDOMSelection *aSelection,
info->outString,
info->typeInState,
info->maxLength);
case kInsertTextIME:
return WillInsert(aSelection, aCancel);
case kDeleteSelection:
return WillDeleteSelection(aSelection, info->collapsedAction, aCancel, aHandled);
case kUndo:
@ -186,6 +185,7 @@ nsTextEditRules::DidDoAction(nsIDOMSelection *aSelection,
case kInsertBreak:
return DidInsertBreak(aSelection, aResult);
case kInsertText:
case kInsertTextIME:
return DidInsertText(aSelection, aResult);
case kDeleteSelection:
return DidDeleteSelection(aSelection, info->collapsedAction, aResult);

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

@ -142,6 +142,7 @@ nsTextEditRules::WillDoAction(nsIDOMSelection *aSelection,
case kInsertBreak:
return WillInsertBreak(aSelection, aCancel, aHandled);
case kInsertText:
case kInsertTextIME:
return WillInsertText(aSelection,
aCancel,
aHandled,
@ -149,8 +150,6 @@ nsTextEditRules::WillDoAction(nsIDOMSelection *aSelection,
info->outString,
info->typeInState,
info->maxLength);
case kInsertTextIME:
return WillInsert(aSelection, aCancel);
case kDeleteSelection:
return WillDeleteSelection(aSelection, info->collapsedAction, aCancel, aHandled);
case kUndo:
@ -186,6 +185,7 @@ nsTextEditRules::DidDoAction(nsIDOMSelection *aSelection,
case kInsertBreak:
return DidInsertBreak(aSelection, aResult);
case kInsertText:
case kInsertTextIME:
return DidInsertText(aSelection, aResult);
case kDeleteSelection:
return DidDeleteSelection(aSelection, info->collapsedAction, aResult);