RE: [Java-gnome-developer] Testing
Brought to you by:
afcowie
From: Jeffrey M. <Jef...@Br...> - 2001-10-08 11:21:32
|
Thanks for the input and feedback. I have never seen the problem you describe on the clist. When it crashes does it produce a core? What additional information can you provide? -Jeff > > Hello all > > I've just joined this list. > > I have tried out java-gnome 0.7 with the IBM JDK 1.3 for linux. > > Running the GTKTest: > > I found that the clist causes a crash when you click add 10000 rows. > Color and Font selection do nothing > > Everything else seems to work as far as I can see. > > I have also tried out the code with my free jvm > (http://kissme.sf.net/). > > The results are similar, except: > > Scrolled Windows is very slow (my JVM does not have a JIT). > Font selection causes a crash and overwrites the stack trace > (I can't print a stack trace) > Colour selection causes a crash and overwrites the stack > trace (I can't print a stack trace) > Status bar does not push any lines (probably some problem > with the Classpath class libraries) > > I discovered a possible bug: > > Since the nativepeer field is of type long (not int), I think > this is more correct: > > Index: src/other/callback_dispatcher.c > =================================================================== > RCS file: > /cvsroot/java-gnome/java-gnome/src/other/callback_dispatcher.c,v > retrieving revision 1.17 > diff -r1.17 callback_dispatcher.c > 31c31 > < obj_pointer = (*env)->GetIntField(env, obj, gtkobj_fieldID); > --- > > obj_pointer = (*env)->GetLongField(env, obj, gtkobj_fieldID); > > I will try out the CVS version later. > > Kudos to the the authors for a great job so far! > > John Leuner > > > > _______________________________________________ > java-gnome-developer mailing list > jav...@li... > https://lists.sourceforge.net/lists/listinfo/java-gnome-developer > |