diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-09-20 15:33:19 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-09-20 15:33:19 +0300 |
commit | 6335562c72fb193a2835a3a09b617aa6c90efea6 (patch) | |
tree | 63288fef0874cf5a03b8d3e034f65daae92c2c29 /uitest/src/com/vaadin/tests/themes | |
parent | 23e77a833df4845c0c0011dde13e6fc5db901a1c (diff) | |
download | vaadin-framework-6335562c72fb193a2835a3a09b617aa6c90efea6.tar.gz vaadin-framework-6335562c72fb193a2835a3a09b617aa6c90efea6.zip |
Rename WrappedXYZ -> VaadinXYZ but retain WrappedSession (#9633)
Diffstat (limited to 'uitest/src/com/vaadin/tests/themes')
-rw-r--r-- | uitest/src/com/vaadin/tests/themes/LiferayThemeTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/themes/LiferayThemeTest.java b/uitest/src/com/vaadin/tests/themes/LiferayThemeTest.java index 6640134326..c1324a0751 100644 --- a/uitest/src/com/vaadin/tests/themes/LiferayThemeTest.java +++ b/uitest/src/com/vaadin/tests/themes/LiferayThemeTest.java @@ -1,7 +1,7 @@ package com.vaadin.tests.themes; import com.vaadin.annotations.Theme; -import com.vaadin.server.WrappedRequest; +import com.vaadin.server.VaadinRequest; import com.vaadin.tests.components.AbstractTestUI; import com.vaadin.ui.Label; import com.vaadin.ui.Panel; @@ -11,7 +11,7 @@ import com.vaadin.ui.themes.LiferayTheme; public class LiferayThemeTest extends AbstractTestUI { @Override - protected void setup(WrappedRequest request) { + protected void setup(VaadinRequest request) { Panel p = new Panel("Panel"); addComponent(p); p.addComponent(new Label("Panel content")); |