From: Matti Tahvonen Date: Mon, 28 Jan 2008 12:51:45 +0000 (+0000) Subject: setWidth/Height now method in Sizeable X-Git-Tag: 6.7.0.beta1~5150 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=01f4236851bed2ad7d923ef2c69bc0a97a4d6fa4;p=vaadin-framework.git setWidth/Height now method in Sizeable svn changeset:3663/svn branch:trunk --- diff --git a/src/com/itmill/toolkit/ui/GridLayout.java b/src/com/itmill/toolkit/ui/GridLayout.java index 532560fdfa..ec56136e22 100644 --- a/src/com/itmill/toolkit/ui/GridLayout.java +++ b/src/com/itmill/toolkit/ui/GridLayout.java @@ -799,20 +799,6 @@ public class GridLayout extends AbstractLayout { } } - /** - * @deprecated use setColumns instead. - */ - public void setWidth(int columns) { - setColumns(columns); - } - - /** - * @deprecated use getColumns instead. - */ - public int getWidth() { - return getColumns(); - } - /** * Sets the number of columns in the grid. The column count can not be * reduced if there are any areas that would be outside of the shrunk grid. @@ -857,20 +843,6 @@ public class GridLayout extends AbstractLayout { return cols; } - /** - * @deprecated use setRows() instead. - */ - public void setHeight(int rows) { - setRows(rows); - } - - /** - * @deprecated use getRows() instead. - */ - public int getHeight() { - return getRows(); - } - /** * Sets the number of rows in the grid. The number of rows can not be * reduced if there are any areas that would be outside of the shrunk grid.