Oops, removing ^M characters. Fixing IRIX bustage.

This commit is contained in:
bryner%netscape.com 2003-04-02 04:52:53 +00:00
Родитель c8aef61acf
Коммит c5358b6362
1 изменённых файлов: 6 добавлений и 5 удалений

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

@ -175,9 +175,10 @@ nsTextEditorKeyListener::KeyPress(nsIDOMEvent* aKeyEvent)
}
// DOM event handling happens in two passes, the client pass and the system
// pass. We do all of our processing in the system pass, to allow client handlers
// the opporunity to cancel events and prevent typing in the editor. If the client
// pass cancelled the event, defaultPrevented will be true below.
// pass. We do all of our processing in the system pass, to allow client
// handlers the opporunity to cancel events and prevent typing in the editor.
// If the client pass cancelled the event, defaultPrevented will be true
// below.
nsCOMPtr<nsIDOMNSUIEvent> nsUIEvent = do_QueryInterface(aKeyEvent);
if(nsUIEvent)