diff options
author | Lars Langhans <lla@openoffice.org> | 2000-12-05 14:14:50 +0000 |
---|---|---|
committer | Lars Langhans <lla@openoffice.org> | 2000-12-05 14:14:50 +0000 |
commit | 3b4df74f619418d1451f5b9db9c0bb6b2b9140b7 (patch) | |
tree | 282a4110d1b5b9eeb73dcfbb2c0544c16a115265 /ridljar/com | |
parent | 3e2b8db9ba9e720f8ad7967f970c95cec66dfb80 (diff) |
#80985# wrong type symbol for long
Diffstat (limited to 'ridljar/com')
-rw-r--r-- | ridljar/com/sun/star/uno/Type.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ridljar/com/sun/star/uno/Type.java b/ridljar/com/sun/star/uno/Type.java index e044b87644a6..343260469b72 100644 --- a/ridljar/com/sun/star/uno/Type.java +++ b/ridljar/com/sun/star/uno/Type.java @@ -2,9 +2,9 @@ * * $RCSfile: Type.java,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: jsc $ $Date: 2000-11-08 15:39:31 $ + * last change: $Author: lla $ $Date: 2000-12-05 15:14:50 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -90,7 +90,7 @@ import com.sun.star.lib.uno.typeinfo.TypeInfo; * methods, which may be changed or moved in the furture, so please * do not use these methods. * <p> - * @version $Revision: 1.1 $ $ $Date: 2000-11-08 15:39:31 $ + * @version $Revision: 1.2 $ $ $Date: 2000-12-05 15:14:50 $ * @author Markus Meyer * @author Kay Ramme * @since UDK1.0 @@ -231,8 +231,8 @@ public class Type { new String[]{"java.lang.Short", "S"}, // UNSIGNED SHORT new String[]{"java.lang.Integer", "I"}, // LONG new String[]{"java.lang.Integer", "I"}, // UNSIGNED_LONG - new String[]{"java.lang.Long", "L"}, // HYPER - new String[]{"java.lang.Long", "L"}, // UNSIGNED_HYPER + new String[]{"java.lang.Long", "J"}, // HYPER + new String[]{"java.lang.Long", "J"}, // UNSIGNED_HYPER new String[]{"java.lang.Float", "F"}, // FLOAT new String[]{"java.lang.Double", "D"}, // DOUBLE new String[]{"java.lang.String", "Ljava.lang.String;"}, // STRING |