diff options
author | Leif Åstrand <leif@vaadin.com> | 2014-02-28 13:42:56 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2014-02-28 11:45:52 +0000 |
commit | 54b448d018922f6315bb756c24c6ce7feff6e14d (patch) | |
tree | d39b779128a594d2328520415475e612f9febdc0 | |
parent | d2027d8344313b048bf3b82e2a988ab40b0bb596 (diff) | |
download | vaadin-framework-54b448d018922f6315bb756c24c6ce7feff6e14d.tar.gz vaadin-framework-54b448d018922f6315bb756c24c6ce7feff6e14d.zip |
Fix compile errors (#13334)
Change-Id: Ib9210685ed70f98af78b5cc3ad756f37b09c326a
-rw-r--r-- | client/src/com/vaadin/client/ui/grid/FlyweightCell.java | 3 | ||||
-rw-r--r-- | shared/src/com/vaadin/shared/ui/grid/ScrollDestination.java (renamed from client/src/com/vaadin/shared/ui/grid/ScrollDestination.java) | 0 |
2 files changed, 1 insertions, 2 deletions
diff --git a/client/src/com/vaadin/client/ui/grid/FlyweightCell.java b/client/src/com/vaadin/client/ui/grid/FlyweightCell.java index 8f52e415e5..296a70934b 100644 --- a/client/src/com/vaadin/client/ui/grid/FlyweightCell.java +++ b/client/src/com/vaadin/client/ui/grid/FlyweightCell.java @@ -20,7 +20,6 @@ import java.util.List; import com.google.gwt.dom.client.Element; import com.google.gwt.dom.client.Style.Display; import com.google.gwt.dom.client.Style.Unit; -import com.google.gwt.user.client.DOM; import com.google.gwt.user.client.ui.IsWidget; import com.google.gwt.user.client.ui.Widget; import com.vaadin.client.ui.grid.FlyweightRow.CellIterator; @@ -192,7 +191,7 @@ class FlyweightCell implements Cell { widget.removeFromParent(); // Physical attach. - DOM.appendChild(getElement(), widget.getElement()); + getElement().appendChild(widget.getElement()); Escalator.setParent(widget, escalator); } diff --git a/client/src/com/vaadin/shared/ui/grid/ScrollDestination.java b/shared/src/com/vaadin/shared/ui/grid/ScrollDestination.java index decc2fab5f..decc2fab5f 100644 --- a/client/src/com/vaadin/shared/ui/grid/ScrollDestination.java +++ b/shared/src/com/vaadin/shared/ui/grid/ScrollDestination.java |