Fixed a bug introduced in r5553 where RadioButton would sink ONMOUSEOUT instead of ONMOUSEUP.

Patch by: jlabanca
Review by: jgw



git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@5627 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/user/client/ui/RadioButton.java b/user/src/com/google/gwt/user/client/ui/RadioButton.java
index dd76a2a..077463b 100644
--- a/user/src/com/google/gwt/user/client/ui/RadioButton.java
+++ b/user/src/com/google/gwt/user/client/ui/RadioButton.java
@@ -62,7 +62,7 @@
     setStyleName("gwt-RadioButton");
     
     sinkEvents(Event.ONCLICK);
-    sinkEvents(Event.ONMOUSEOUT);
+    sinkEvents(Event.ONMOUSEUP);
     sinkEvents(Event.ONBLUR);
     sinkEvents(Event.ONKEYDOWN);
   }