diff options
author | John Ahlroos <john@vaadin.com> | 2012-08-28 15:47:58 +0300 |
---|---|---|
committer | John Ahlroos <john@vaadin.com> | 2012-08-28 15:47:58 +0300 |
commit | f7f5c6b09ad7f11315373c72cf83e3ebc4ad6aaf (patch) | |
tree | 1c0ddf6eddb5f5d8aec324dc9963dc444269d889 /tests/testbench/com/vaadin/tests/tickets/Ticket2061.java | |
parent | b0ab3da024d83f7c2fc8eb39e02f14c77a18f66b (diff) | |
parent | ccec71e7fa90fabee12dabe4192ee7a2cb3ac970 (diff) | |
download | vaadin-framework-f7f5c6b09ad7f11315373c72cf83e3ebc4ad6aaf.tar.gz vaadin-framework-f7f5c6b09ad7f11315373c72cf83e3ebc4ad6aaf.zip |
Merge branch 'master' of ssh://git@dev.vaadin.com/vaadin.git
Diffstat (limited to 'tests/testbench/com/vaadin/tests/tickets/Ticket2061.java')
-rw-r--r-- | tests/testbench/com/vaadin/tests/tickets/Ticket2061.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/testbench/com/vaadin/tests/tickets/Ticket2061.java b/tests/testbench/com/vaadin/tests/tickets/Ticket2061.java index d86646b865..4d6549bfbf 100644 --- a/tests/testbench/com/vaadin/tests/tickets/Ticket2061.java +++ b/tests/testbench/com/vaadin/tests/tickets/Ticket2061.java @@ -49,7 +49,7 @@ public class Ticket2061 extends Application.LegacyApplication { private VerticalLayout layout = new VerticalLayout(); public MyTable(int columnNumber, String id) { - setDebugId(id); + setId(id); setCompositionRoot(layout); setSizeFull(); columns = initializeColumns(columnNumber); @@ -108,7 +108,7 @@ public class Ticket2061 extends Application.LegacyApplication { this.setWidth("100%"); this.setHeight("100%"); for (int i = 0; i < components.length; i++) { - this.addTab(components[i], components[i].getDebugId(), null); + this.addTab(components[i], components[i].getId(), null); } } @@ -119,9 +119,9 @@ public class Ticket2061 extends Application.LegacyApplication { public MyAccordion(Component[] components, String id) { this.setWidth("100%"); this.setHeight("100%"); - setDebugId(id); + setId(id); for (int i = 0; i < components.length; i++) { - this.addTab(components[i], components[i].getDebugId(), null); + this.addTab(components[i], components[i].getId(), null); } } } |