Module: wine Branch: master Commit: 9eb4ee2e06d7865d5f7a6ffc404bd0e71fe19287 URL: http://source.winehq.org/git/wine.git/?a=commit;h=9eb4ee2e06d7865d5f7a6ffc40...
Author: Jacek Caban jacek@codeweavers.com Date: Mon Jun 23 20:01:25 2008 -0500
mshtml: Added IHTMLElement::put_onkeyup implementation.
---
dlls/mshtml/htmlelem.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/dlls/mshtml/htmlelem.c b/dlls/mshtml/htmlelem.c index 3968156..91e4b6a 100644 --- a/dlls/mshtml/htmlelem.c +++ b/dlls/mshtml/htmlelem.c @@ -487,8 +487,10 @@ static HRESULT WINAPI HTMLElement_get_onkeydown(IHTMLElement *iface, VARIANT *p) static HRESULT WINAPI HTMLElement_put_onkeyup(IHTMLElement *iface, VARIANT v) { HTMLElement *This = HTMLELEM_THIS(iface); - FIXME("(%p)->()\n", This); - return E_NOTIMPL; + + TRACE("(%p)->()\n", This); + + return set_node_event(&This->node, EVENTID_KEYUP, &v); }
static HRESULT WINAPI HTMLElement_get_onkeyup(IHTMLElement *iface, VARIANT *p)