Subversion Repository Public Repository

litesoft

Diff Revisions 150 vs 151 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/forms/client/components/nonpublic/AbstractFormContainer.java

Diff revisions: vs.
  @@ -1,11 +1,12 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.GWT.forms.client.components.nonpublic;
3 3
4 - import com.google.gwt.user.client.ui.*;
5 4 import org.litesoft.GWT.client.widgets.*;
6 5 import org.litesoft.GWT.client.widgets.nonpublic.*;
7 6 import org.litesoft.ui.*;
8 7
8 + import com.google.gwt.user.client.ui.*;
9 +
9 10 public class AbstractFormContainer extends Composite implements ISizeableWidget
10 11 {
11 12 protected final FormContainerErrorPanel mErrorPanel = new FormContainerErrorPanel();
  @@ -105,18 +106,18 @@
105 106 {
106 107 public MyResizeHelper()
107 108 {
108 - super(666);
109 + super( 666 );
109 110 }
110 111
111 112 @Override
112 113 protected void doResize()
113 114 {
114 - if (mPendingWidth != null)
115 + if ( mPendingWidth != null )
115 116 {
116 117 mOuterPanel.setWidth( mPendingWidth );
117 118 mPendingWidth = null;
118 119 }
119 - if (mPendingHeight != null)
120 + if ( mPendingHeight != null )
120 121 {
121 122 mOuterPanel.setHeight( mPendingHeight );
122 123 mPendingHeight = null;