Subversion Repository Public Repository

litesoft

Diff Revisions 151 vs 804 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/SizeableVerticalFlowPanel.java

Diff revisions: vs.
  @@ -4,6 +4,7 @@
4 4 import org.litesoft.GWT.client.*;
5 5 import org.litesoft.core.*;
6 6 import org.litesoft.core.delayed.*;
7 + import org.litesoft.core.typeutils.*;
7 8 import org.litesoft.core.util.*;
8 9
9 10 import com.google.gwt.user.client.ui.*;
  @@ -201,7 +202,7 @@
201 202 public void setWidth( String width )
202 203 {
203 204 super.setWidth( width );
204 - if ( !UtilsCommon.areNonArraysEqual( mLastWidth, width ) )
205 + if ( !Objects.areNonArraysEqual( mLastWidth, width ) )
205 206 {
206 207 mLastWidth = width;
207 208 LLreflowLater();
  @@ -230,7 +231,7 @@
230 231 public void setHeight( String height )
231 232 {
232 233 super.setHeight( height );
233 - if ( !UtilsCommon.areNonArraysEqual( mLastHeight, height ) )
234 + if ( !Objects.areNonArraysEqual( mLastHeight, height ) )
234 235 {
235 236 mLastHeight = height;
236 237 LLreflowLater();