diff options
author | Leif Åstrand <leif@vaadin.com> | 2011-11-14 16:42:54 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2011-11-14 16:42:54 +0200 |
commit | d84ab905d2a741d1de2b398b279e49db30813f16 (patch) | |
tree | 09fcd4fcd36df18f87f438dfa1e863db556131b8 /src/com/vaadin/ui | |
parent | 63dba1460db71a0ffa7c22de11cfbbffa48d3b77 (diff) | |
download | vaadin-framework-d84ab905d2a741d1de2b398b279e49db30813f16.tar.gz vaadin-framework-d84ab905d2a741d1de2b398b279e49db30813f16.zip |
Make Window.close public
Diffstat (limited to 'src/com/vaadin/ui')
-rw-r--r-- | src/com/vaadin/ui/Window.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/vaadin/ui/Window.java b/src/com/vaadin/ui/Window.java index 3d9c86206c..0063c37fb9 100644 --- a/src/com/vaadin/ui/Window.java +++ b/src/com/vaadin/ui/Window.java @@ -513,7 +513,7 @@ public class Window extends Panel implements FocusNotifier, BlurNotifier { * {@link CloseListener}. * </p> */ - protected void close() { + public void close() { Root root = getRoot(); // focus is restored to the parent window root.focus(); |