diff options
Diffstat (limited to 'embed/mozilla/EventContext.cpp')
-rw-r--r-- | embed/mozilla/EventContext.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/embed/mozilla/EventContext.cpp b/embed/mozilla/EventContext.cpp index 9d4e312b6..78a01e451 100644 --- a/embed/mozilla/EventContext.cpp +++ b/embed/mozilla/EventContext.cpp @@ -525,16 +525,12 @@ nsresult EventContext::GetCSSBackground (nsIDOMNode *node, nsAutoString& url) nsresult EventContext::GetMouseEventInfo (EphyEmbedEvent *info) { nsresult result; - DOMTimeStamp ts; nsIDOMMouseEvent *aMouseEvent = (nsIDOMMouseEvent*)mEvent; aMouseEvent->GetButton ((PRUint16*)&info->mouse_button); aMouseEvent->GetScreenX ((PRInt32*)&info->mouse_x); aMouseEvent->GetScreenY ((PRInt32*)&info->mouse_y); - aMouseEvent->GetTimeStamp(&ts); - info->timestamp = ts; - /* be sure we are not clicking on the scroolbars */ nsCOMPtr<nsIDOMNSEvent> nsEvent = do_QueryInterface(aMouseEvent, &result); |