Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 60 for /trunk/Java/GWT/OldServer/src/org/litesoft/GWT/forms/server/support/converters/SendableSimpleFixedPointLongConverter.java

Diff revisions: vs.
  @@ -3,7 +3,7 @@
3 3
4 4 import org.litesoft.GWT.forms.server.support.nonpublic.*;
5 5 import org.litesoft.core.simpletypes.*;
6 - import org.litesoft.rpcpassable.*;
6 + import java.io.*;
7 7
8 8 public class SendableSimpleFixedPointLongConverter extends AbstractSendableSameConverter
9 9 {
  @@ -16,7 +16,7 @@
16 16 mFormatControl = pFormatControl;
17 17 }
18 18
19 - protected RPCpassable convertCommon( Object pValue )
19 + protected Serializable convertCommon( Object pValue )
20 20 {
21 21 return to_SimpleFixedPointLong( mDecimalPlaces, mFormatControl, pValue );
22 22 }