[kaffe] CVS kaffe (dalibor): Mark fixed JNI c++ build problems, fixing building with Qt-awt as well
Kaffe CVS
cvs-commits at kaffe.org
Mon Aug 25 12:17:02 PDT 2003
PatchSet 3979
Date: 2003/08/25 19:14:33
Author: dalibor
Branch: HEAD
Tag: (none)
Log:
Mark fixed JNI c++ build problems, fixing building with Qt-awt as well
Members:
ChangeLog:1.1576->1.1577
include/jni_cpp.h:1.5->1.6
Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.1576 kaffe/ChangeLog:1.1577
--- kaffe/ChangeLog:1.1576 Mon Aug 25 07:48:24 2003
+++ kaffe/ChangeLog Mon Aug 25 19:14:33 2003
@@ -1,3 +1,11 @@
+2003-08-25 Mark Wielaard <mark at klomp.org>
+
+ * include/jni_cpp.h (JNIEnv::CheckException): Change to
+ ExceptionCheck.
+
+ Reported by: Chris Halls <halls at debian.org>
+ Bernhard Rosenkraenzer <bero at arklinux.org>
+
2003-08-24 Guilhem Lavaux <guilhem at kaffe.org>
* kaffe/kaffevm/systems/unix-jthreads/jqueue.c,
Index: kaffe/include/jni_cpp.h
diff -u kaffe/include/jni_cpp.h:1.5 kaffe/include/jni_cpp.h:1.6
--- kaffe/include/jni_cpp.h:1.5 Mon Jul 7 18:02:16 2003
+++ kaffe/include/jni_cpp.h Mon Aug 25 19:14:34 2003
@@ -1201,9 +1201,9 @@
return (functions->GetJavaVM(this, a));
}
-inline jboolean JNIEnv::CheckException(void)
+inline jboolean JNIEnv::ExceptionCheck(void)
{
- return (functions->CheckException(this));
+ return (functions->ExceptionCheck(this));
}
#endif
More information about the kaffe
mailing list