[kaffe] CVS kaffe (robilad): Resynced with GNU Classpath: Fixed return type of NewObjectArray

Kaffe CVS cvs-commits at kaffe.org
Sun Nov 7 09:15:37 PST 2004


PatchSet 5413 
Date: 2004/11/07 16:18:24
Author: robilad
Branch: HEAD
Tag: (none) 
Log:
Resynced with GNU Classpath: Fixed return type of NewObjectArray

2004-11-07  Dalibor Topic  <robilad at kaffe.org>

        * include/jni.h:
        Resynced with GNU Classpath.

        2004-11-03  Tom Tromey  <tromey at redhat.com>

        * include/jni.h (struct JNINativeInterface) <NewObjectArray>: Now
        returns jobjectArray.
        (_Jv_JNIEnv::NewObjectArray): Likewise.

Members: 
	ChangeLog:1.2962->1.2963 
	include/jni.h:1.34->1.35 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.2962 kaffe/ChangeLog:1.2963
--- kaffe/ChangeLog:1.2962	Sun Nov  7 15:34:55 2004
+++ kaffe/ChangeLog	Sun Nov  7 16:18:24 2004
@@ -1,5 +1,16 @@
 2004-11-07  Dalibor Topic  <robilad at kaffe.org>
 
+	* include/jni.h:
+        Resynced with GNU Classpath.
+
+	2004-11-03  Tom Tromey  <tromey at redhat.com>
+
+        * include/jni.h (struct JNINativeInterface) <NewObjectArray>: Now
+        returns jobjectArray.
+        (_Jv_JNIEnv::NewObjectArray): Likewise.
+
+2004-11-07  Dalibor Topic  <robilad at kaffe.org>
+
 	* libraries/javalib/java/awt/Font.java:
         Resynced with GNU Classpath.
 
Index: kaffe/include/jni.h
diff -u kaffe/include/jni.h:1.34 kaffe/include/jni.h:1.35
--- kaffe/include/jni.h:1.34	Mon Sep 20 00:02:05 2004
+++ kaffe/include/jni.h	Sun Nov  7 16:18:27 2004
@@ -406,7 +406,7 @@
   const char * (JNICALL *GetStringUTFChars)       (JNIEnv *, jstring, jboolean *);                 /* 169 */
   void     (JNICALL *ReleaseStringUTFChars)        (JNIEnv *, jstring, const char *);               /* 170 */
   jsize    (JNICALL *GetArrayLength)               (JNIEnv *, jarray);                              /* 171 */
-  jarray   (JNICALL *NewObjectArray)               (JNIEnv *, jsize, jclass, jobject);              /* 172 */
+  jobjectArray   (JNICALL *NewObjectArray)         (JNIEnv *, jsize, jclass, jobject);              /* 172 */
   jobject  (JNICALL *GetObjectArrayElement)        (JNIEnv *, jobjectArray, jsize);                 /* 173 */
   void     (JNICALL *SetObjectArrayElement)        (JNIEnv *, jobjectArray, jsize, jobject);        /* 174 */
 
@@ -1178,7 +1178,7 @@
   jsize GetArrayLength (jarray val0)
   { return p->GetArrayLength (this, val0); }
 
-  jarray NewObjectArray (jsize val0, jclass cl1, jobject obj2)
+  jobjectArray NewObjectArray (jsize val0, jclass cl1, jobject obj2)
   { return p->NewObjectArray (this, val0, cl1, obj2); }
 
   jobject GetObjectArrayElement (jobjectArray val0, jsize val1)




More information about the kaffe mailing list