Re: [cp-patches] FYI: Fix for PR34991

2009-01-06 Thread David Gilbert
Robert Schuster wrote: -draw(new Polygon(xPoints, yPoints, nPoints)); +for (int i = 1; i nPoints; i++) + draw(new Line2D.Double(xPoints[i - 1], yPoints[i - 1], + xPoints[i], yPoints[i])); Hi Robert, Line2D instances are mutable (via setLine() methods)

Re: Updated CVS Stats

2007-07-10 Thread David Gilbert
Mario Torre wrote: Hello! I've seen that David has not updated the cvs stats for quite a while, and being such a curious guy, I've managed to build up new stats by myself. I guess some other are happy to watch stats so I've uploaded the whole thing here:

Re: David Gilbert's Software will be part of OpenOffice.org

2007-04-23 Thread David Gilbert
Hi theUser BL, Thanks for the post. theUser BL wrote: Do you know who David Gilbert is? I do, it's me. Right, he have created a lot og classes for GNU Classpath like something for Free Swing and so on. Also he is part of the people at planet.classpath.org and writes also in his blog a lot

Re: [cp-patches] FYI: CompoundBorder fix

2006-12-06 Thread David Gilbert
Tania Bento wrote: Hey, This patch fixes a bug in javax.swing.border.CompoundBorder's isBorderOpaque() method. The reference implementation specifications states that this method only returns true if both the inside and outside borders have a non-null value and both are opaque; false,

Re: 0.93 branch created

2006-12-04 Thread David Gilbert
Mark Wielaard wrote: - Run some larger applications as smoke tests eclipse, jfreecharts, jedit, megamek, hsql-frontends, some applets, etc. to make sure they still run as well as they did with 0.92. Reports welcome! I tried things like our examples, SwingSet2, Java2D and RSSOwl already

Re: 0.93 branch created

2006-12-04 Thread David Gilbert
Roman Kennke wrote: Am Montag, den 04.12.2006, 11:57 +0100 schrieb Dalibor Topic: David Gilbert wrote: Maybe the exception means something to someone more familiar with this part of GNU Classpath: [error] AWT-EventQueue-2: Exception during event dispatch: [error] AWT-EventQueue-2

Re: 0.93 branch created

2006-12-04 Thread David Gilbert
David Gilbert wrote: Roman Kennke wrote: Am Montag, den 04.12.2006, 11:57 +0100 schrieb Dalibor Topic: David Gilbert wrote: Maybe the exception means something to someone more familiar with this part of GNU Classpath: [error] AWT-EventQueue-2: Exception during event dispatch: [error

[cp-patches] FYI: JSlider thumb icons

2006-11-29 Thread David Gilbert
The thumb icons for JSliders are drawing badly at present because of a FIXME in the gradient painting code. Until we can come up with a solution, I think it is tidier to draw the icons without the gradient paint: 2006-11-29 David Gilbert [EMAIL PROTECTED] * javax/swing/plaf/metal

Regression in Swing Demo

2006-11-29 Thread David Gilbert
I just checked out the latest code from CVS and ran the Swing demo...and there seems to be a problem with drawing some icons. At first glance, it looks like some operations (e.g. fillRect()) may be off by one pixel. Is anyone else seeing this? (For example, look at the close icon for an

[commit-cp] classpath ChangeLog javax/swing/plaf/metal/Meta...

2006-11-29 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/11/29 18:07:10 Modified files: . : ChangeLog javax/swing/plaf/metal: MetalIconFactory.java Log message: 2006-11-29 David Gilbert [EMAIL PROTECTED

[cp-patches] FYI: BeanContextSupport.serialize() and deserialize() implemented

2006-11-24 Thread David Gilbert
This patch (committed) implements a couple of utility methods in the BeanContextSupport class: 2006-11-23 David Gilbert [EMAIL PROTECTED] * java/beans/beancontext/BeanContextSupport.java (deserialize): Implemented, (serialize): Implemented. I'll commit the corresponding Mauve tests

Re: [cp-patches] Paint context fixes

2006-11-24 Thread David Gilbert
Hi Roman, Roman Kennke wrote: Hi David, hi Francis, I checked in the attached patch to HeadlessGraphicsEnvironment. It now tries to get hold of a CairoGraphics2D if available. It falls back to the (Java-only) RasterGraphics only when nothing else works. David, can you please test if this

Re: [cp-patches] Paint context fixes

2006-11-24 Thread David Gilbert
Roman Kennke wrote: Hi David, I checked in the attached patch to HeadlessGraphicsEnvironment. It now tries to get hold of a CairoGraphics2D if available. It falls back to the (Java-only) RasterGraphics only when nothing else works. David, can you please test if this works?

Re: [cp-patches] Paint context fixes

2006-11-24 Thread David Gilbert
Hi Roman, Roman Kennke wrote: Hi David, hi Francis, I checked in the attached patch to HeadlessGraphicsEnvironment. It now tries to get hold of a CairoGraphics2D if available. It falls back to the (Java-only) RasterGraphics only when nothing else works. David, can you please test if this

[commit-cp] classpath ChangeLog java/beans/beancontext/Bean...

2006-11-24 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/11/24 04:38:19 Modified files: . : ChangeLog java/beans/beancontext: BeanContextServicesSupport.java Log message: 2006-11-24 David Gilbert [EMAIL

[commit-cp] classpath ChangeLog java/beans/beancontext/Bean...

2006-11-24 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/11/23 09:56:43 Modified files: . : ChangeLog java/beans/beancontext: BeanContextSupport.java Log message: 2006-11-23 David Gilbert [EMAIL

Re: [cp-patches] Paint context fixes

2006-11-22 Thread David Gilbert
Hi Francis, I'm seeing this exception now when trying to run StatCVS: [EMAIL PROTECTED]:~/mauve-cvs$ jamvm -Xmx300m -jar ~/statcvs-0.2.3/statcvs.jar logfile.log mauve StatCVS - CVS statistics generation Revision of install-sh does not match expected revision Revision of mkinstalldirs does

[cp-patches] FYI: BeanContextSupport.avoidingGui() is already implemented

2006-11-22 Thread David Gilbert
This patch (committed) removes the NotImplementedException tag from one method that is already implemented: 2006-11-22 David Gilbert [EMAIL PROTECTED] * java/beans/beancontext/BeanContextSupport.java (avoidingGui): Removed NotImplementedException. The implementation (from earlier

[commit-cp] classpath ChangeLog java/beans/beancontext/Bean...

2006-11-22 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/11/22 17:59:26 Modified files: . : ChangeLog java/beans/beancontext: BeanContextSupport.java Log message: 2006-11-22 David Gilbert [EMAIL

Re: [cp-patches] BeanContextSupport - implemented some missing methods

2006-11-16 Thread David Gilbert
Roman Kennke wrote: This patch (committed) implements some missing methods: Yay! Some more japi points :-) /Roman Yep. I have an interest in learning more about JavaBeans, so I decided to poke around in the code, and improve our japi scores a bit while I'm at it. I have no idea if

[commit-cp] classpath ChangeLog java/beans/beancontext/Bean...

2006-11-16 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/11/16 09:43:23 Modified files: . : ChangeLog java/beans/beancontext: BeanContextSupport.java Log message: 2006-11-16 David Gilbert [EMAIL

[commit-cp] classpath ChangeLog java/beans/DesignMode.java ...

2006-11-15 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/11/16 05:29:54 Modified files: . : ChangeLog java/beans : DesignMode.java Statement.java Log message: 2006-11-16 David Gilbert [EMAIL

[cp-patches] FYI: Collections.java - minor API doc addition

2006-11-10 Thread David Gilbert
This patch (committed) adds info about null arguments to the API docs for the Collections.sort() methods: 2006-11-10 David Gilbert [EMAIL PROTECTED] * java/util/Collections.java (sort(List)): Minor API doc addition, (sort(List, Comparator)): Likewise. Regards, Dave

Re: [cp-patches] FYI: Collections.java - minor API doc addition

2006-11-10 Thread David Gilbert
David Gilbert wrote: This patch (committed) adds info about null arguments to the API docs for the Collections.sort() methods: 2006-11-10 David Gilbert [EMAIL PROTECTED] * java/util/Collections.java (sort(List)): Minor API doc addition, (sort(List, Comparator)): Likewise. Regards

[commit-cp] classpath ChangeLog java/util/Collections.java

2006-11-10 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/11/10 16:37:19 Modified files: . : ChangeLog java/util : Collections.java Log message: 2006-11-10 David Gilbert [EMAIL PROTECTED

[commit-cp] classpath ChangeLog java/beans/beancontext/Bean...

2006-11-10 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/11/11 06:14:19 Modified files: . : ChangeLog java/beans/beancontext: BeanContextSupport.java Log message: 2006-11-11 David Gilbert [EMAIL

[cp-patches] FYI: SimpleBeanInfo - fix for 29770

2006-11-09 Thread David Gilbert
This patch (committed) fixes a bug in the loadImage() method: 2006-11-09 David Gilbert [EMAIL PROTECTED] Fixes bug #29770 * java/beans/SimpleBeanInfo.java (loadImage): Check for nulls. I've already committed Mauve tests for this. Regards, Dave Index: java/beans/SimpleBeanInfo.java

[cp-patches] FYI: BeanContextSupport - constructor fixes

2006-11-09 Thread David Gilbert
This patch (committed) fixes a few failing Mauve tests: 2006-11-09 David Gilbert [EMAIL PROTECTED] * java/beans/beancontext/BeanContextSupport.java (BeanContextSupport): Use correct dtime default, (BeanContextSupport(BeanContext)): Likewise, (BeanContextSupport(BeanContext, Locale

[commit-cp] classpath ChangeLog java/beans/beancontext/Bean...

2006-11-09 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/11/09 17:01:49 Modified files: . : ChangeLog java/beans/beancontext: BeanContextSupport.java Log message: 2006-11-09 David Gilbert [EMAIL

[commit-cp] classpath ChangeLog java/beans/beancontext/Bean...

2006-11-09 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/11/09 17:35:55 Modified files: . : ChangeLog java/beans/beancontext: BeanContextSupport.java Log message: 2006-11-09 David Gilbert [EMAIL

Re: [cp-patches] FYI: Font fixes

2006-11-02 Thread David Gilbert
Hi Roman, I wanted to try this out, but if I do a clean check out of the latest CVS, I get the following compile error when I compile with Jikes: Found 1 semantic error compiling ../gnu/java/awt/peer/gtk/GdkFontPeer.java: 59. public class GdkFontPeer extends ClasspathFontPeer

Re: [cp-patches] FYI: Font fixes

2006-11-02 Thread David Gilbert
Thanks, that fixed it! Roman Kennke wrote: Am Donnerstag, den 02.11.2006, 17:04 + schrieb David Gilbert: Hi Roman, I wanted to try this out, but if I do a clean check out of the latest CVS, I get the following compile error when I compile with Jikes: Found 1 semantic error compiling

[cp-patches] FYI: GeneralPath - API doc fixes

2006-11-02 Thread David Gilbert
This patch (committed) fixes a couple of Eclipse warnings concerning the API docs for GeneralPath: 2006-11-02 David Gilbert [EMAIL PROTECTED] * java/awt/geom/GeneralPath.java: API doc fixes. Regards, Dave Index: java/awt/geom/GeneralPath.java

Re: [cp-patches] FYI: JEditorPane fix

2006-10-18 Thread David Gilbert
Hi Roman, I was hopeful that this might improve the JFreeChart demo a little, because it displays an HTML description of the selected chart. With GNU Classpath, the description is currently displayed as plain text with visible HTML tags. It turns out that with your patch, the chart

Re: [cp-patches] FYI: JEditorPane fix

2006-10-18 Thread David Gilbert
I've attached a minimal test case that shows the problem. Run the test code with the test.html file in the same directory as the JTextPaneTest.class file. I tried changing the JTextPane to a JEditorPane, but that fails also. Regards, Dave David Gilbert wrote: Hi Roman, I was hopeful

[cp-patches] FYI: DefaultTreeSelectionModel.clone() - fix compile error with Jikes

2006-10-13 Thread David Gilbert
This patch (committed) fixes a compile error I get from jikes: 2006-10-13 David Gilbert [EMAIL PROTECTED] * javax/swing/tree/DefaultTreeSelectionModel.java (clone): Added cast to TreePath[]. Regards, Dave Index: javax/swing/tree/DefaultTreeSelectionModel.java

Re: [cp-patches] FYI: JSlider fixes

2006-10-13 Thread David Gilbert
Does this work for you? After this change, in our Swing demo I just see ... instead of text for all of the labels. Regards, Dave Roman Kennke wrote: This fixes various issues with the JSlider (and its UIs): - There were several repaint() and revalidate() calls missing. This caused the

[commit-cp] classpath ChangeLog javax/swing/tree/DefaultTre...

2006-10-13 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/10/13 08:56:29 Modified files: . : ChangeLog javax/swing/tree: DefaultTreeSelectionModel.java Log message: 2006-10-13 David Gilbert [EMAIL

[cp-patches] FYI: MetalIconFactory - icon updates

2006-09-26 Thread David Gilbert
This patch (committed) fixes a couple of file chooser icons to pick up the theme colors: 2006-09-26 David Gilbert [EMAIL PROTECTED] * javax/swing/plaf/metal/MetalIconFactory.java (FileIcon16.paintIcon): Fetch colors from look and feel, (FolderIcon16.paintIcon

[cp-patches] FYI: MetalIconFactory - getShift() methods

2006-09-26 Thread David Gilbert
This patch (committed) fixes the painting of icons to respect the (possibly overridden) getShift() method. It improves the appearance of our file chooser and JTree components, a little bit anyway: 2006-09-26 David Gilbert [EMAIL PROTECTED] * javax/swing/plaf/metal

[cp-patches] FYI: SizeSequence.getSize() fix

2006-09-22 Thread David Gilbert
This patch (committed) fixes an ArrayIndexOutOfBoundsException in the JTable.getRowHeight(int) method: 2006-09-22 David Gilbert [EMAIL PROTECTED] * javax/swing/SizeSequence.java (getSize): Return 0 if index is out of bounds. Mauve tests already committed. Regards, Dave

[commit-cp] classpath ChangeLog javax/swing/SizeSequence.java

2006-09-22 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/22 11:20:36 Modified files: . : ChangeLog javax/swing: SizeSequence.java Log message: 2006-09-22 David Gilbert [EMAIL PROTECTED

[cp-patches] FYI: BasicInternalFrameTitlePane.java - flip icon when maximising

2006-09-21 Thread David Gilbert
This patch (committed) flips the icon on the maximise/minimise button for internal frames: 2006-09-21 David Gilbert [EMAIL PROTECTED] * javax/swing/plaf/basic/BasicInternalFrameTitlePane.java (MaximizeAction.actionPerformed): Change icon on maxButton. Regards, Dave Index

[cp-patches] FYI: RoundRectangle2D.java - fix for bug 27929

2006-09-20 Thread David Gilbert
This patch (committed) fixes bug 27929 by reimplementing the getPathIterator() method: 2006-09-20 David Gilbert [EMAIL PROTECTED] * java/awt/geom/RoundRectangle2D.java: (getPathIterator): Reimplemented, and updated various API doc comments. Regards, Dave Index: java

[cp-patches] FYI: BasicRadioButtonUI.java - fix initialisation of icon field

2006-09-20 Thread David Gilbert
This patch (committed) tweaks the icon initialisation to fix a problem that shows up when using the LiquidLookAndFeel: 2006-09-20 David Gilbert [EMAIL PROTECTED] * javax/swing/plaf/basic/BasicRadioButtonUI.java (BasicRadioButtonUI): Don't fetch icon here

[commit-cp] classpath ChangeLog java/awt/geom/RoundRectangl...

2006-09-20 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/20 13:27:50 Modified files: . : ChangeLog java/awt/geom : RoundRectangle2D.java Log message: 2006-09-20 David Gilbert [EMAIL PROTECTED

[commit-cp] classpath ChangeLog javax/swing/plaf/basic/Basi...

2006-09-20 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/20 15:21:00 Modified files: . : ChangeLog javax/swing/plaf/basic: BasicRadioButtonUI.java Log message: 2006-09-20 David Gilbert [EMAIL

[cp-patches] FYI: AbstractButton and subclasses - initialisation fixes

2006-09-19 Thread David Gilbert
This patch (committed) fixes a problem that shows up when trying to run the LiquidLookAndFeel [1] on GNU Classpath where an exception is thrown because the JMenuItem button model hasn't been initialised at the point that the UI delegate is set: 2006-09-19 David Gilbert [EMAIL PROTECTED

[cp-patches] FYI: JMenuBar.getHelpMenu()

2006-09-19 Thread David Gilbert
This patch (committed) makes the getHelpMenu() method in the JMenuBar class throw an error to match the reference implementation, and updates some API docs in a couple of other methods: 2006-09-19 David Gilbert [EMAIL PROTECTED] * javax/swing/JMenuBar.java (getHelpMenu

[commit-cp] classpath ChangeLog javax/swing/AbstractButton....

2006-09-19 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/19 14:26:43 Modified files: . : ChangeLog javax/swing: AbstractButton.java JButton.java JMenuItem.java JToggleButton.java

[commit-cp] classpath ChangeLog javax/swing/JMenuBar.java

2006-09-19 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/19 14:41:53 Modified files: . : ChangeLog javax/swing: JMenuBar.java Log message: 2006-09-19 David Gilbert [EMAIL PROTECTED

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

2006-09-14 Thread David Gilbert
Mark Wielaard wrote: Hi David, On Mon, 2006-09-11 at 11:57 +0100, David Gilbert wrote: Mauve tests will be committed shortly. I've assumed that the fix is small enough not to require FSF paperwork. Yes, you are right. In general things smaller than 10/15 lines, or obvious fixes

[cp-patches] FYI: java.awt.Menu.java - source reformatted

2006-09-14 Thread David Gilbert
This patch (committed) reformats the source file to match our coding style more closely: 2006-09-14 David Gilbert [EMAIL PROTECTED] * java/awt/Menu.java: Reformatted source file. Regards, Dave Index: java/awt/Menu.java

[cp-patches] FYI: java.awt.Menu - fix for PR28699

2006-09-14 Thread David Gilbert
This patch (committed) fixes a bug (PR28699) in the insert() method of the java.awt.Menu class: 2006-09-14 David Gilbert [EMAIL PROTECTED] Fixes PR28699 * java/awt/Menu.java (insert(MenuItem, int)): Fixed loop range, (insert(String, int)): Updated API docs

[commit-cp] classpath ChangeLog java/awt/Menu.java

2006-09-14 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/14 10:35:49 Modified files: . : ChangeLog java/awt : Menu.java Log message: 2006-09-14 David Gilbert [EMAIL PROTECTED

[cp-patches] FYI: AbstractButton fix

2006-09-12 Thread David Gilbert
This patch (committed) sets the default value for the textIconGap field, which makes things look better: 2006-09-12 David Gilbert [EMAIL PROTECTED] * javax/swing/AbstractButton.java (AbstractButton): Initialise textIconGap field. I have some Mauve tests to cover

[cp-patches] FYI: AbstractSpinnerModel - minor API doc updates

2006-09-12 Thread David Gilbert
This patch (committed) updates some of the API docs in the AbstractSpinnerModel class: 2006-09-12 David Gilbert [EMAIL PROTECTED] * javax/swing/AbstractSpinnerModel.java: API doc updates. Regards, Dave Index: javax/swing/AbstractSpinnerModel.java

[cp-patches] FYI: MetalIconFactory.java - fix icon colors

2006-09-12 Thread David Gilbert
This patch (committed) makes the InternalFrameDefaultMenuIcon use the theme colors: 2006-09-12 David Gilbert [EMAIL PROTECTED] * javax/swing/plaf/metal/MetalIconFactory.java (InternalFrameDefaultMenuIcon.paintIcon): Use theme colors. Regards, Dave Index: javax/swing/plaf

[cp-patches] FYI: OceanTheme.addCustomEntriesToTable() - added entry

2006-09-12 Thread David Gilbert
This patch (committed) adds a new entry to the defaults table: 2006-09-12 David Gilbert [EMAIL PROTECTED] * javax/swing/plaf/metal/OceanTheme.java (addCustomEntriesToTable): Added 'List.focusCellHighlightBorder' entry. I'll commit a Mauve test for this shortly. Regards

[cp-patches] FYI: DefaultMetalTheme.getControl/MenuTextFont() update

2006-09-12 Thread David Gilbert
This patch (committed) updates two font methods to observe the setting of the 'swing.boldMetal' UI default value: 2006-09-12 David Gilbert [EMAIL PROTECTED] * javax/swing/plaf/metal/DefaultMetalTheme.java (CONTROL_TEXT_FONT): Renamed 'controlTextFont', (MENU_TEXT_FONT

[commit-cp] classpath ChangeLog javax/swing/AbstractButton....

2006-09-12 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/12 09:02:05 Modified files: . : ChangeLog javax/swing: AbstractButton.java Log message: 2006-09-12 David Gilbert [EMAIL PROTECTED

[commit-cp] classpath ChangeLog javax/swing/AbstractSpinner...

2006-09-12 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/12 09:15:48 Modified files: . : ChangeLog javax/swing: AbstractSpinnerModel.java Log message: 2006-09-12 David Gilbert [EMAIL PROTECTED

[commit-cp] classpath ChangeLog javax/swing/plaf/metal/Meta...

2006-09-12 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/12 09:48:43 Modified files: . : ChangeLog javax/swing/plaf/metal: MetalIconFactory.java Log message: 2006-09-12 David Gilbert [EMAIL PROTECTED

[commit-cp] classpath ChangeLog javax/swing/plaf/metal/Ocea...

2006-09-12 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/12 10:54:47 Modified files: . : ChangeLog javax/swing/plaf/metal: OceanTheme.java Log message: 2006-09-12 David Gilbert [EMAIL PROTECTED

[commit-cp] classpath ChangeLog javax/swing/plaf/metal/Defa...

2006-09-12 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/12 14:30:53 Modified files: . : ChangeLog javax/swing/plaf/metal: DefaultMetalTheme.java Log message: 2006-09-12 David Gilbert [EMAIL

[commit-cp] classpath ChangeLog gnu/java/awt/peer/gtk/Cairo...

2006-09-12 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/12 22:08:12 Modified files: . : ChangeLog gnu/java/awt/peer/gtk: CairoGraphics2D.java Log message: 2006-09-12 David Gilbert [EMAIL PROTECTED

[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, AttributedCharacterIterator.Attribute

[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

[commit-cp] classpath ChangeLog java/text/AttributedCharact...

2006-09-11 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/11 13:56:09 Modified files: . : ChangeLog java/text : AttributedCharacterIterator.java AttributedStringIterator.java Log

[commit-cp] classpath ChangeLog java/text/AttributedString....

2006-09-11 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/11 10:45:02 Modified files: . : ChangeLog java/text : AttributedString.java Log message: 2006-09-11 Cameron McCormack [EMAIL PROTECTED

[commit-cp] classpath ChangeLog java/text/AttributedCharact...

2006-09-11 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/11 13:08:04 Modified files: . : ChangeLog java/text : AttributedCharacterIterator.java AttributedString.java

[cp-patches] FYI: MemoryImageSource.java - API docs

2006-09-07 Thread David Gilbert
I added some API docs to MemoryImageSource.java some time ago - now committed to CVS: 2006-09-07 David Gilbert [EMAIL PROTECTED] * java/awt/image/MemoryImageSource.java: Added API docs. Regards, Dave Index: java/awt/image/MemoryImageSource.java

[cp-patches] FYI: MetalScrollBarUI.java - small fix

2006-09-07 Thread David Gilbert
This patch (committed) moves the initialisation of the scrollBarWidth field into the installDefaults() method - the JGoodies PlasticLookAndFeel class requires this, and it seems more sensible than the code that we have now in any case: 2006-09-07 David Gilbert [EMAIL PROTECTED

[cp-patches] FYI: BasicInternalFrameUI.java - minor fix

2006-09-07 Thread David Gilbert
This patch (committed) fixes dragging of internal frames under the PlasticLookAndFeel from JGoodies: 2006-09-07 David Gilbert [EMAIL PROTECTED] * javax/swing/plaf/basic/BasicInternalFrameUI.java (setNorthPane): Assign component to titlePane. Here are a couple of screenshots

[commit-cp] classpath ChangeLog java/awt/image/MemoryImageS...

2006-09-07 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/07 08:22:12 Modified files: . : ChangeLog java/awt/image : MemoryImageSource.java Log message: 2006-09-07 David Gilbert [EMAIL PROTECTED

[commit-cp] classpath ChangeLog javax/swing/plaf/metal/Meta...

2006-09-07 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/07 09:38:13 Modified files: . : ChangeLog javax/swing/plaf/metal: MetalScrollBarUI.java Log message: 2006-09-07 David Gilbert [EMAIL PROTECTED

[commit-cp] classpath ChangeLog javax/swing/plaf/basic/Basi...

2006-09-07 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/07 11:42:15 Modified files: . : ChangeLog javax/swing/plaf/basic: BasicInternalFrameUI.java Log message: 2006-09-07 David Gilbert [EMAIL

[cp-patches] FYI: MetalLookAndFeel.initComponentDefaults() - font fixes

2006-09-06 Thread David Gilbert
This patch (committed) fixes some of the default font settings in the Metal look and feel: 2006-09-06 David Gilbert [EMAIL PROTECTED] * javax/swing/plaf/metal/MetalLookAndFeel.java (initComponentDefaults): Corrected various font defaults. Mauve checks already committed

[cp-patches] FYI: javax.swing.UIManager fix

2006-09-06 Thread David Gilbert
This patch (committed) allows the Swing demo to start up with the PlasticLookAndFeel from JGoodies specified as the current look and feel: 2006-09-06 David Gilbert [EMAIL PROTECTED] * javax/swing/UIManager.java (MultiplexUIDefaults.MultiplexUIDefaults()): Don't allow null

[cp-patches] FYI: javax.swing.UIManager fixes

2006-09-06 Thread David Gilbert
This patch (committed) fixes some errors in the UIManager class: 2006-09-06 David Gilbert [EMAIL PROTECTED] * javax/swing/UIManager.java (getBoolean(Object)): Reimplemented, (getBoolean(Object, Locale)): Likewise, (getBorder(Object)): Likewise

[cp-patches] FYI: BasicScrollBarUI.java - fix

2006-09-06 Thread David Gilbert
This patch (committed) fixes a NullPointerException in the PlasticLookAndFeel from JGoodies when running on GNU Classpath: 2006-09-06 David Gilbert [EMAIL PROTECTED] * javax/swing/plaf/basic/BasicScrollBarUI.java (installDefaults): Call configureScrollBarColors(). Regards

[commit-cp] classpath ChangeLog javax/swing/plaf/metal/Meta...

2006-09-06 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/06 11:39:43 Modified files: . : ChangeLog javax/swing/plaf/metal: MetalLookAndFeel.java Log message: 2006-09-06 David Gilbert [EMAIL PROTECTED

[commit-cp] classpath ChangeLog javax/swing/UIManager.java

2006-09-06 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/06 15:47:30 Modified files: . : ChangeLog javax/swing: UIManager.java Log message: 2006-09-06 David Gilbert [EMAIL PROTECTED

[commit-cp] classpath ChangeLog javax/swing/plaf/basic/Basi...

2006-09-06 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/06 16:37:30 Modified files: . : ChangeLog javax/swing/plaf/basic: BasicScrollBarUI.java Log message: 2006-09-06 David Gilbert [EMAIL PROTECTED

[commit-cp] classpath ChangeLog java/awt/List.java

2006-09-05 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/05 21:24:21 Modified files: . : ChangeLog java/awt : List.java Log message: 2006-09-05 David Gilbert [EMAIL PROTECTED

[commit-cp] classpath ChangeLog java/awt/List.java

2006-09-05 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/05 21:47:08 Modified files: . : ChangeLog java/awt : List.java Log message: 2006-09-05 David Gilbert [EMAIL PROTECTED

[cp-patches] FYI: Rectangle.setRect() - modified rounding

2006-09-04 Thread David Gilbert
This patch (committed) changes the rounding used in the setRect() method: 2006-09-04 David Gilbert [EMAIL PROTECTED] * java/awt/Rectangle.java (setRect(double, double, double, double)): Modified rounding of input values. I have Mauve tests for this and will commit

[commit-cp] classpath ChangeLog java/awt/Rectangle.java

2006-09-04 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Changes by: David Gilbert trebligd06/09/04 08:52:33 Modified files: . : ChangeLog java/awt : Rectangle.java Log message: 2006-09-04 David Gilbert [EMAIL PROTECTED

[cp-patches] FYI: java.util.Calendar - some API doc additions

2006-08-17 Thread David Gilbert
This patch (committed) adds some details to the API docs regarding null arguments for a few methods that I happened to be looking at today: 2006-08-17 David Gilbert [EMAIL PROTECTED] * java/util/Calendar.java: API doc additions. Regards, Dave Index: java/util/Calendar.java

Re: GNU Classpath Talk This Thursday

2006-08-16 Thread David Gilbert
Hi Andrew, Andrew John Hughes wrote: Also, if there's a more up-to-date version of the lines of code graph, that'd be great too :) I ran it yesterday and uploaded it today - see Planet Classpath for the link. Good luck with your presentation! Regards, Dave

Re: Torturing image ops and Swing

2006-08-03 Thread David Gilbert
Hi Norman, Thanks for the detailed report! I don't have time to try this out right now, but I have a couple of comments: [EMAIL PROTECTED] wrote: 1. Select menu File Open image directory... and select a directory with some images. This is the first challenge, because JFileChooser

Re: Torturing image ops and Swing

2006-08-03 Thread David Gilbert
Roman Kennke wrote: Hi Norman, anyone interested in torturing our Swing, awt.image and javax.image operations a bit? Sure. These are packages that require lots of work still. David started to write Mauve tests and fix awt.image I think. I did. I will come back to it when I can - in

Re: Testing JDK bugs?

2006-07-27 Thread David Gilbert
Roman Kennke wrote: Hi lists, hi David (you wrote most of the tests I'm gonna talk about..) While trying to clean up some Mauve failures I came upon a couple of tests that fail on JDK because they test strictly against the spec where the JDK isn't as strict. This is mostly bounds checking,

Re: Testing JDK bugs?

2006-07-27 Thread David Gilbert
Jeroen Frijters wrote: David Gilbert wrote: The theory is easy: Mauve should test AN implementation against THE spec. Pardon me for beating my favorite horse again, but this assumes that the spec is somehow more valuable than code and/or that the spec doesn't contain bugs

[cp-patches] FYI: BandedSampleModel.createCompatibleSampleModel() fixes

2006-07-26 Thread David Gilbert
be equal to the new sample model width, not the old scanlineStride. Here is the ChangeLog entry: 2006-07-26 David Gilbert [EMAIL PROTECTED] * java/awt/image/BandedSampleModel.java (createCompatibleSampleModel): Fixed typo in loop increment, set correct scanlineStride

[cp-patches] FYI: java.util.Vector - API doc typo fixed

2006-07-26 Thread David Gilbert
This patch (committed) fixes a typo in the API docs: 2006-07-26 David Gilbert [EMAIL PROTECTED] * java/util/Vector.java: Fixed API doc typo. Regards, Dave Index: java/util/Vector.java === RCS file: /sources/classpath

[cp-patches] FYI: StringContent - minor fix

2006-07-26 Thread David Gilbert
This patch (committed) makes a small fix to the default constructor: 2006-07-26 David Gilbert [EMAIL PROTECTED] * javax/swing/text/StringContent.java (StringContent): Changed initialLength to 10. Regards, Dave Index: javax/swing/text/StringContent.java

[cp-patches] FYI: BandedSampleModel fixes

2006-07-26 Thread David Gilbert
This patch (committed) fixes the remaining failing Mauve test cases for this class: 2006-07-26 David Gilbert [EMAIL PROTECTED] * java/awt/image/BandedSampleModel.java (getDataElements): Check for negative x or y, (getPixels): Likewise, (getSamples): Likewise

  1   2   3   4   5   6   7   8   9   10   >