diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-06-26 13:26:07 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-06-26 13:26:07 +0200 |
commit | 783f57d74b0caf84cec01a0ae43a2a8cb8697673 (patch) | |
tree | 4f553014261185615fb198cdeb270f2437b22d48 /editor/libeditor/TextEditor.h | |
parent | 5a559eb6c9c9cf05206506b0ea62fe9337834b9c (diff) | |
download | UXP-783f57d74b0caf84cec01a0ae43a2a8cb8697673.tar UXP-783f57d74b0caf84cec01a0ae43a2a8cb8697673.tar.gz UXP-783f57d74b0caf84cec01a0ae43a2a8cb8697673.tar.lz UXP-783f57d74b0caf84cec01a0ae43a2a8cb8697673.tar.xz UXP-783f57d74b0caf84cec01a0ae43a2a8cb8697673.zip |
Issue #12 Part 1: Stop using nsIDOMEvent in UpdateIMEComposition.
Diffstat (limited to 'editor/libeditor/TextEditor.h')
-rw-r--r-- | editor/libeditor/TextEditor.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/libeditor/TextEditor.h b/editor/libeditor/TextEditor.h index 872cd91d3..31c551f85 100644 --- a/editor/libeditor/TextEditor.h +++ b/editor/libeditor/TextEditor.h @@ -130,7 +130,8 @@ public: virtual already_AddRefed<dom::EventTarget> GetDOMEventTarget() override; virtual nsresult BeginIMEComposition(WidgetCompositionEvent* aEvent) override; - virtual nsresult UpdateIMEComposition(nsIDOMEvent* aTextEvent) override; + virtual nsresult UpdateIMEComposition( + WidgetCompositionEvent* aCompositionChangeEvent) override; virtual already_AddRefed<nsIContent> GetInputEventTargetContent() override; |