Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 151 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/forms/client/components/impls/input/FormImageSelectBadDataType.java

Diff revisions: vs.
  @@ -8,10 +8,7 @@
8 8 {
9 9 private String mBadDataType;
10 10
11 - public FormImageSelectBadDataType( String pFieldLabel, UiFont pLabelFont, String pTooltip,
12 - String pBadDataType, Integer pInitialWidth,
13 - boolean pWidthNotStretchable, Integer pInitialHeight,
14 - boolean pHeightNotStretchable )
11 + public FormImageSelectBadDataType( String pFieldLabel, UiFont pLabelFont, String pTooltip, String pBadDataType, Integer pInitialWidth, boolean pWidthNotStretchable, Integer pInitialHeight, boolean pHeightNotStretchable )
15 12 {
16 13 super( pFieldLabel, pLabelFont, pTooltip, true, pInitialWidth, pWidthNotStretchable, pInitialHeight, pHeightNotStretchable );
17 14 mBadDataType = pBadDataType;
  @@ -32,7 +29,6 @@
32 29 protected void onAttach()
33 30 {
34 31 super.onAttach();
35 - setCurrentResourceKeyNameURL( new ResourceKeyNameURL( null, "Bad data type: " + mBadDataType,
36 - "common/images/misc/tmp/BadDataType.jpg" ) );
32 + setCurrentResourceKeyNameURL( new ResourceKeyNameURL( null, "Bad data type: " + mBadDataType, "common/images/misc/tmp/BadDataType.jpg" ) );
37 33 }
38 34 }