summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2011-11-14 16:42:54 +0200
committerLeif Åstrand <leif@vaadin.com>2011-11-14 16:42:54 +0200
commitd84ab905d2a741d1de2b398b279e49db30813f16 (patch)
tree09fcd4fcd36df18f87f438dfa1e863db556131b8
parent63dba1460db71a0ffa7c22de11cfbbffa48d3b77 (diff)
downloadvaadin-framework-d84ab905d2a741d1de2b398b279e49db30813f16.tar.gz
vaadin-framework-d84ab905d2a741d1de2b398b279e49db30813f16.zip
Make Window.close public
-rw-r--r--src/com/vaadin/ui/Window.java2
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();