[cp-patches] FYI: BasicTabbedPaneUI fix

2006-09-01 Thread Robert Schuster
Hi, by calling the getTabRunOverlay method from BasicTabbedPaneUI.calculateTabAreaWidth (and calculateTabAreaHeight) instead of accessing the variable directly the overridden behavior in MetalTabbedPaneUI comes to effect. This fixes the ill positioning of the content area in tabbed panes with

Re: [cp-patches] FYI: SocketPermission tweak

2006-09-01 Thread Gary Benson
Tom Tromey wrote: Gary == Gary Benson [EMAIL PROTECTED] writes: This commit makes java.net.SocketPermission()'s constructor use localhost when called with an empty hostport argument as mandated by the spec. Do we want this in GCC 4.2? Or FC6? This particular one probably doesn't

[cp-patches] FYI: Fix HTML-on-components

2006-09-01 Thread Roman Kennke
This should fix HTML rendering for components that support it. 2006-09-01 Roman Kennke [EMAIL PROTECTED] PR 28922 * javax/swing/plaf/basic/BasicHTML.java (HTMLRootView.getAttributes): Overridden to return null. (HTMLRootView.getElement): Overridden to return

[cp-patches] FYI: small tab pane demo change

2006-09-01 Thread Robert Schuster
Hi, this fixes the naming in the tabbed pane demo a bit. ChangeLog: 2006-09-01 Robert Schuster [EMAIL PROTECTED] * examples/gnu/classpath/examples/swing/TabbedPaneDemo.java: (createContent): Changed menu item name and tab naming. cya Robert Index:

[cp-patches] FYI: BasicLookAndFeel properties corrected

2006-09-01 Thread Robert Schuster
Hi, the attached patch fixes some properties of the tabbed panes in BasicLookAndFeel. ChangeLog: 2006-09-01 Robert Schuster [EMAIL PROTECTED] * javax/swing/plaf/basic/BasicLookAndFeel.java: (initComponentDefaults): Added, changed and removed some tabbed pane

[cp-patches] FYI: MetalCheckBoxUI fix

2006-09-01 Thread Robert Schuster
Hi, in order to call the isChecked() method it is not needed to cast a component to a JCheckBox - an AbstractButton is enough. I dont think this costs us anything and makes the class more flexible for all the possible misuses out there. :) ChangeLog: 2006-09-01 Robert Schuster [EMAIL

[cp-patches] FYI: DefaultTableMode fix

2006-09-01 Thread Robert Schuster
Hi, the attached patch fixes a NullPointerException for me. ChangeLog: 2006-09-01 Robert Schuster [EMAIL PROTECTED] * javax/swing/table/DefaultTableModel.java: (checkSize): Added null check for dataVector. cya Robert Index: javax/swing/table/DefaultTableModel.java

Re: [cp-patches] RFA: ConvolveOp fixes

2006-09-01 Thread Francis Kung
The attached patch fixes the failing mauve tests for ConvolveOp, and also touches up the ColorConvertOp to use the correct transfer type. Any comments (or objections) before committing? Nope, looks good. For future java.awt.image patches, feel free to simply post an FYI, unless

[cp-testresults] FAIL: regressions for mauve-jamvm on Fri Sep 1 13:21:41 UTC 2006

2006-09-01 Thread cpdev
Baseline from: Fri Sep 1 08:27:56 UTC 2006 Regressions: FAIL: javax.swing.BoxLayout.maximumLayoutSize2 FAIL: javax.swing.JFileChooser.getControlButtonsAreShown FAIL: javax.swing.JFileChooser.getFileView FAIL: javax.swing.JFileChooser.isAcceptAllFileFilterUsed FAIL:

[cp-testresults] FAIL: regressions for mauve-jamvm on Fri Sep 1 20:31:25 UTC 2006

2006-09-01 Thread cpdev
Baseline from: Fri Sep 1 08:27:56 UTC 2006 Regressions: FAIL: javax.swing.BoxLayout.maximumLayoutSize2 FAIL: javax.swing.JFileChooser.addChoosableFileFilter FAIL: javax.swing.JFileChooser.getApproveButtonMnemonic FAIL: javax.swing.JFileChooser.getDialogTitle FAIL:

[cp-testresults] FAIL: regressions for mauve-cacao on Fri Sep 1 21:47:25 UTC 2006

2006-09-01 Thread cpdev
Baseline from: Fri Sep 1 14:37:38 UTC 2006 Regressions: FAIL: java.awt.Graphics.TestPaintGraphics FAIL: java.awt.Scrollbar.ScrollbarPaintTest Totals: PASS: 2737 XPASS: 0 FAIL: 215 XFAIL: 0 ___ Classpath-testresults mailing list

[cp-testresults] FAIL: regressions for mauve-jamvm on Sat Sep 2 03:44:19 UTC 2006

2006-09-01 Thread cpdev
Baseline from: Fri Sep 1 08:27:56 UTC 2006 Regressions: FAIL: javax.swing.BoxLayout.maximumLayoutSize2 FAIL: javax.swing.JComboBox.ComboRobot FAIL: javax.swing.JFileChooser.addChoosableFileFilter FAIL: javax.swing.JFileChooser.getApproveButtonToolTipText FAIL:

[cp-testresults] FAIL: regressions for mauve-cacao on Sat Sep 2 04:58:18 UTC 2006

2006-09-01 Thread cpdev
Baseline from: Fri Sep 1 14:37:38 UTC 2006 Regressions: FAIL: java.awt.Graphics.TestPaintGraphics Improvements: PASS: java.awt.image.ColorConvertOp.createCompatibleDestImage PASS: java.awt.image.ConvolveOp.createCompatibleDestImage PASS: java.awt.image.ConvolveOp.filterImage Totals: PASS: 2741

Bootstrapping GNU Classpath on Fedora Core 5

2006-09-01 Thread Alexander Shopov
Hi guys, Is there a small tutorial on how to bootstrap GNU classpath on Fedora Core 5? I am trying to build it and use it, but I fail time and again. I did: 1. wget ftp://ftp.gnu.org/pub/gnu/classpath/classpath-0.92.tar.gz 2. tar xvfz classpath-0.92.tar.gz 3. cd classpath-0.92 4. ./configure

Re: Bootstrapping GNU Classpath on Fedora Core 5

2006-09-01 Thread Mario Torre
Il giorno ven, 01/09/2006 alle 19.58 +0300, Alexander Shopov ha scritto: Hi guys, Is there a small tutorial on how to bootstrap GNU classpath on Fedora Core 5? I am trying to build it and use it, but I fail time and again. I did: 1. wget

Re: Bootstrapping GNU Classpath on Fedora Core 5

2006-09-01 Thread Tom Tromey
Alexander == Alexander Shopov [EMAIL PROTECTED] writes: Alexander Is there a small tutorial on how to bootstrap GNU classpath Alexander on Fedora Core 5? Not exactly, I'm afraid. In particular I don't think we document what devel packages you need. For general info there is the INSTALL file,

[Bug swing/28928] New: JTextField does not respect column argument for layout

2006-09-01 Thread thebohemian at gmx dot net
When a JTextField has a non-zero column value (getColumns()) its width should be adjusted to allow this number of character being visible at once. This worked already and so is a regression. :( -- Summary: JTextField does not respect column argument for layout Product:

[Bug swing/28929] New: Wrong content is drawn when scrolling a JList

2006-09-01 Thread thebohemian at gmx dot net
To see this problem follow the instructions: - fire up the Swing Activity Board - make the List demo visible - move the internal frame down so that the lower border of it is covered by the button line - now use the scroll bars of the JList to see the last list entries result = parts of the button

[Bug swing/28929] Wrong content is drawn when scrolling a JList

2006-09-01 Thread thebohemian at gmx dot net
--- Comment #1 from thebohemian at gmx dot net 2006-09-01 18:44 --- Created an attachment (id=12170) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12170action=view) An image showing the problem. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28929

[Bug swing/28928] JTextField does not respect column argument for layout

2006-09-01 Thread thebohemian at gmx dot net
--- Comment #1 from thebohemian at gmx dot net 2006-09-01 18:46 --- What currently happens is that the component is shrunk to width of the text it contains. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28928 ___ Bug-classpath mailing

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

2006-09-01 Thread Robert Schuster
CVSROOT:/cvsroot/classpath Module name:classpath Changes by: Robert Schuster rschuster 06/09/01 07:18:54 Modified files: javax/swing/plaf/basic: BasicTabbedPaneUI.java . : ChangeLog Log message: 2006-09-01 Robert Schuster [EMAIL

[commit-cp] classpath javax/swing/plaf/basic/BasicHTML.java...

2006-09-01 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Changes by: Roman Kennke rabbit78 06/09/01 09:34:17 Modified files: javax/swing/plaf/basic: BasicHTML.java . : ChangeLog Log message: 2006-09-01 Roman Kennke [EMAIL PROTECTED]

[commit-cp] classpath examples/gnu/classpath/examples/swing...

2006-09-01 Thread Robert Schuster
CVSROOT:/cvsroot/classpath Module name:classpath Changes by: Robert Schuster rschuster 06/09/01 17:46:11 Modified files: examples/gnu/classpath/examples/swing: TabbedPaneDemo.java . : ChangeLog Log message: 2006-09-01 Robert Schuster

[commit-cp] classpath ChangeLog

2006-09-01 Thread Robert Schuster
CVSROOT:/cvsroot/classpath Module name:classpath Changes by: Robert Schuster rschuster 06/09/01 18:02:06 Modified files: . : ChangeLog Log message: Fixed my last entry. CVSWeb URLs:

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

2006-09-01 Thread Robert Schuster
CVSROOT:/cvsroot/classpath Module name:classpath Changes by: Robert Schuster rschuster 06/09/01 18:11:18 Modified files: javax/swing/plaf/metal: MetalCheckBoxIcon.java . : ChangeLog Log message: 2006-09-01 Robert Schuster [EMAIL

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

2006-09-01 Thread Robert Schuster
CVSROOT:/cvsroot/classpath Module name:classpath Changes by: Robert Schuster rschuster 06/09/01 18:23:58 Modified files: javax/swing/plaf/basic: BasicSplitPaneUI.java . : ChangeLog Log message: 2006-09-01 Robert Schuster [EMAIL

[commit-cp] classpath java/awt/image/ConvolveOp.java java/a...

2006-09-01 Thread Francis Kung
CVSROOT:/cvsroot/classpath Module name:classpath Changes by: Francis Kung fkung06/09/01 20:25:51 Modified files: java/awt/image : ConvolveOp.java ColorConvertOp.java . : ChangeLog Log message: 2006-09-01 Francis Kung [EMAIL PROTECTED]