]> source.dussan.org Git - vaadin-framework.git/commitdiff
fixed invalid code style
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Tue, 7 Oct 2008 11:28:07 +0000 (11:28 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Tue, 7 Oct 2008 11:28:07 +0000 (11:28 +0000)
svn changeset:5603/svn branch:trunk

src/com/itmill/toolkit/terminal/gwt/client/ui/IPopupView.java

index f0a0254f30df44a8a415128108af2d06a9c13106..be18720328ab6861e2b593ca108ae2d3e5740734 100644 (file)
@@ -169,11 +169,12 @@ public class IPopupView extends HTML implements Paintable {
         windowBottom = windowTop + RootPanel.get().getOffsetHeight();
     }
 
-    public static native void nativeBlur(Element e) /*-{ 
-                                                       if(e.focus) {
-                                                       e.blur();
-                                                       }
-                                                       }-*/;
+    private static native void nativeBlur(Element e)
+    /*-{ 
+        if(e.focus) {
+            e.blur();
+        }
+    }-*/;
 
     private class CustomPopup extends IToolkitOverlay implements Container {