aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/com/vaadin/tests/components/orderedlayout
diff options
context:
space:
mode:
authorJohannes Dahlström <johannesd@vaadin.com>2012-10-31 15:01:43 +0200
committerVaadin Code Review <review@vaadin.com>2012-11-02 09:28:36 +0000
commit4bbad2b320d4332e0e5e3fb03b4f37fcec1c6be7 (patch)
tree1419796b4c07edcb312de8f1cb5ac7323aafa719 /uitest/src/com/vaadin/tests/components/orderedlayout
parent45c7d559f791060be0642b9b7c447107c07f2232 (diff)
downloadvaadin-framework-4bbad2b320d4332e0e5e3fb03b4f37fcec1c6be7.tar.gz
vaadin-framework-4bbad2b320d4332e0e5e3fb03b4f37fcec1c6be7.zip
Move LegacyWindow to its own file (#9917)
Change-Id: Iac2f000dfcc9dc8c52d45b83842dfa0d8382c1d5
Diffstat (limited to 'uitest/src/com/vaadin/tests/components/orderedlayout')
-rw-r--r--uitest/src/com/vaadin/tests/components/orderedlayout/LayoutRenderTimeTest.java4
-rw-r--r--uitest/src/com/vaadin/tests/components/orderedlayout/VerticalLayoutWidthCalculation.java2
2 files changed, 3 insertions, 3 deletions
diff --git a/uitest/src/com/vaadin/tests/components/orderedlayout/LayoutRenderTimeTest.java b/uitest/src/com/vaadin/tests/components/orderedlayout/LayoutRenderTimeTest.java
index 0f4140e903..5c3c6fcdc8 100644
--- a/uitest/src/com/vaadin/tests/components/orderedlayout/LayoutRenderTimeTest.java
+++ b/uitest/src/com/vaadin/tests/components/orderedlayout/LayoutRenderTimeTest.java
@@ -6,7 +6,7 @@ import com.vaadin.ui.Button;
import com.vaadin.ui.Embedded;
import com.vaadin.ui.HorizontalLayout;
import com.vaadin.ui.Label;
-import com.vaadin.ui.UI;
+import com.vaadin.ui.LegacyWindow;
import com.vaadin.ui.VerticalLayout;
import com.vaadin.ui.themes.Reindeer;
@@ -14,7 +14,7 @@ public class LayoutRenderTimeTest extends LegacyApplication {
@Override
public void init() {
- UI.LegacyWindow main = new UI.LegacyWindow();
+ LegacyWindow main = new LegacyWindow();
setMainWindow(main);
VerticalLayout root = new VerticalLayout();
diff --git a/uitest/src/com/vaadin/tests/components/orderedlayout/VerticalLayoutWidthCalculation.java b/uitest/src/com/vaadin/tests/components/orderedlayout/VerticalLayoutWidthCalculation.java
index 60d20ad8be..f558285224 100644
--- a/uitest/src/com/vaadin/tests/components/orderedlayout/VerticalLayoutWidthCalculation.java
+++ b/uitest/src/com/vaadin/tests/components/orderedlayout/VerticalLayoutWidthCalculation.java
@@ -4,8 +4,8 @@ import com.vaadin.tests.components.AbstractTestCase;
import com.vaadin.ui.Button;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.HorizontalLayout;
+import com.vaadin.ui.LegacyWindow;
import com.vaadin.ui.TextField;
-import com.vaadin.ui.UI.LegacyWindow;
import com.vaadin.ui.VerticalLayout;
import com.vaadin.ui.Window;