summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2014-02-28 13:42:56 +0200
committerLeif Åstrand <leif@vaadin.com>2014-02-28 11:45:52 +0000
commit54b448d018922f6315bb756c24c6ce7feff6e14d (patch)
treed39b779128a594d2328520415475e612f9febdc0
parentd2027d8344313b048bf3b82e2a988ab40b0bb596 (diff)
downloadvaadin-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.java3
-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