diff options
author | Henri Sara <hesara@vaadin.com> | 2012-11-13 18:08:29 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-11-13 18:18:40 +0200 |
commit | 391884746fda1781c55b13bc200dd75373f69141 (patch) | |
tree | 0d5a8dcd9d13c5c39813d81252506e12d72741af /uitest/src/com/vaadin/tests/tickets/Ticket2029.java | |
parent | 4628bcc3062ef19ed9d561f79fe3bfb3696d6e04 (diff) | |
download | vaadin-framework-391884746fda1781c55b13bc200dd75373f69141.tar.gz vaadin-framework-391884746fda1781c55b13bc200dd75373f69141.zip |
UI based on AbstractBasicComponentContainer (#2924)
Change-Id: I1614a3464b8e7a0e9ecdd8c3a76335cdb85bdf87
Diffstat (limited to 'uitest/src/com/vaadin/tests/tickets/Ticket2029.java')
-rw-r--r-- | uitest/src/com/vaadin/tests/tickets/Ticket2029.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/tickets/Ticket2029.java b/uitest/src/com/vaadin/tests/tickets/Ticket2029.java index 8031041e5b..db3334d570 100644 --- a/uitest/src/com/vaadin/tests/tickets/Ticket2029.java +++ b/uitest/src/com/vaadin/tests/tickets/Ticket2029.java @@ -32,9 +32,9 @@ public class Ticket2029 extends LegacyApplication { setMainWindow(w); // setTheme("tests-tickets"); Panel p = createPanel(); - w.getContent().addComponent(p); + w.addComponent(p); // w.getLayout().addComponent(createGLPanel()); - w.getContent().addComponent(createPanelV()); + w.addComponent(createPanelV()); } private Panel createPanel() { |