From 01f4236851bed2ad7d923ef2c69bc0a97a4d6fa4 Mon Sep 17 00:00:00 2001 From: Matti Tahvonen Date: Mon, 28 Jan 2008 12:51:45 +0000 Subject: [PATCH] setWidth/Height now method in Sizeable svn changeset:3663/svn branch:trunk --- src/com/itmill/toolkit/ui/GridLayout.java | 28 ----------------------- 1 file changed, 28 deletions(-) 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. -- 2.39.5