[cp-patches] FYI: InetAddress family handling (take 2)

2006-09-11 Thread Gary Benson
Hi all, This commit renames the constants AF_INET and AF_INET6 that I introduced in my last commit. Unfortunatly with gcj they end up in CNI headers where they conflict with the real AF_INET and AF_INET6. Cheers, Gary Index: ChangeLog

[cp-patches] FYI: AttributedString constructor fix (for PR29010)

2006-09-11 Thread David Gilbert
I committed this patch attached to PR29010, after testing it: 2006-09-11 Cameron McCormack [EMAIL PROTECTED] Fixes PR29010 * java/text/AttributedString.java (AttributedString(AttributedCharacterIterator, int, int, AttributedCharacterIterator.Attribute[])):

Re: [cp-patches] FYI: AttributedString constructor fix (for PR29010)

2006-09-11 Thread David Gilbert
David Gilbert wrote: I committed this patch attached to PR29010, after testing it: 2006-09-11 Cameron McCormack [EMAIL PROTECTED] Fixes PR29010 * java/text/AttributedString.java (AttributedString(AttributedCharacterIterator, int, int,

[cp-patches] FYI: InetAddress family handling (take 3)

2006-09-11 Thread Gary Benson
Hi again, So it turns out that my last commit was unnecessary -- the header causing the problems should never have been included anyway -- so since I preferred the original version with AF_INET and AF_INET6 I have reverted to it. Cheers, Gary Index: ChangeLog

[cp-patches] FYI: AttributedCharacterIterator/AttributedString - style updates

2006-09-11 Thread David Gilbert
This patch (committed) adds @since tags and reformats the source files to match our coding style a little better: 2006-09-11 David Gilbert [EMAIL PROTECTED] * java/text/AttributedCharacterIterator.java: Added @since tag, renamed some variables (no underscores) and removed

[cp-patches] FYI: AttributedCharacterIterator/AttributedStringIterator fixes

2006-09-11 Thread David Gilbert
This patch (committed) fixes a couple more problems in attributed text classes: 2006-09-11 David Gilbert [EMAIL PROTECTED] * java/text/AttributedCharacterIterator.java (LANGUAGE): Initialise with lower case string, (INPUT_METHOD_SEGMENT): Likewise, (READING):

Re: [cp-patches] RFC: Cairo interpolation

2006-09-11 Thread Francis Kung
I don't want to remove the cairoSurfaceSetFilter function; however the cairo_pattern usually hasn't been created yet (and won't be created until the drawPixels or drawSurface function), so I'm not sure how to make SurfaceSetFilter do anything useful... Why is cairoSurfaceSetFilter

Re: [cp-patches] PATCH: fix for JCL_GetRawData

2006-09-11 Thread Casey Marshall
Casey Marshall wrote: This is a better attempt at fixing the JCL_NewRawDataObject and JCL_GetRawData, which initializes the cached class, method, and field variables in JNI_OnLoad. This is potentially problematic, I suppose, because the jcl.lo object is linked directly to a number of

[cp-patches] Patch: FYI: volatile and CNI

2006-09-11 Thread Tom Tromey
I'm checking this in. This adds 'volatile' to the CNI header file generated by javah, as needed. Tom 2006-09-11 Tom Tromey [EMAIL PROTECTED] * tools/gnu/classpath/tools/javah/FieldHelper.java (print): Print volatile when needed. Index: