I've run through a number of tests and have not noticed any regressions in performance or functionality, but please let me know if there are any problems.

That didn't take long. This patch clears up a null pointer exception introduced by the last patch.


One last one, a tiny fix for people with --enable-regen-headers

Francis


2007-04-03  Francis Kung  <[EMAIL PROTECTED]>

        * gnu/java/awt/peer/gtk/FreetypeGlyphVector.java
        (getGlyphs(int[], int[], long[])): Return void.

Index: gnu/java/awt/peer/gtk/FreetypeGlyphVector.java
===================================================================
RCS file: /cvsroot/classpath/classpath/gnu/java/awt/peer/gtk/FreetypeGlyphVector.java,v
retrieving revision 1.18
diff -u -r1.18 FreetypeGlyphVector.java
--- gnu/java/awt/peer/gtk/FreetypeGlyphVector.java	2 Apr 2007 21:28:58 -0000	1.18
+++ gnu/java/awt/peer/gtk/FreetypeGlyphVector.java	3 Apr 2007 19:30:10 -0000
@@ -234,7 +234,7 @@
   /**
    * Returns the glyph code within the font for a given character
    */
-  public native int[] getGlyphs(int[] codepoints, int[] glyphs, long[] fonts);
+  public native void getGlyphs(int[] codepoints, int[] glyphs, long[] fonts);
 
   /**
    * Returns the kerning of a glyph pair

Reply via email to