Subversion Repository Public Repository

litesoft

Diff Revisions 150 vs 151 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/nonpublic/CloseableFloaterPanelTitleBar.java

Diff revisions: vs.
  @@ -1,17 +1,17 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.GWT.client.widgets.nonpublic;
3 3
4 - import com.google.gwt.user.client.*;
5 -
6 4 import org.litesoft.GWT.client.widgets.*;
7 5
6 + import com.google.gwt.user.client.*;
7 +
8 8 public class CloseableFloaterPanelTitleBar extends FloaterTitleBar
9 9 {
10 10 protected SimpleLabel mTitle = new SimpleLabel();
11 11
12 12 public CloseableFloaterPanelTitleBar( String pForm, Command pCloseCommand )
13 13 {
14 - mTitle.setStyleName( "litesoft-"+pForm+"BarCaption" );
14 + mTitle.setStyleName( "litesoft-" + pForm + "BarCaption" );
15 15 setVerticalAlignment( ALIGN_MIDDLE );
16 16 buildTitleBar( pCloseCommand );
17 17 }