RE: [cp-patches] RFC: ZipFile optimizations

2006-02-15 Thread Jeroen Frijters
[EMAIL PROTECTED] wrote: Jeroen == Jeroen Frijters [EMAIL PROTECTED] writes: Jeroen I noticed that ZipFile currently doesn't use any buffering Jeroen when reading the zip file directory, so I would like to Jeroen propose the attached patch to fix this. For me this Jeroen significantly

[cp-patches] FYI: JTable header values.

2006-02-15 Thread Audrius Meskauskas
The program was showing incorrect (default rather than custom) table headers with Classpath. We found that this is because the header value is set once again in setColumnModel. If the column header value is set by calling setHeaderValue(..), the table must use that value and do not request

[cp-patches] FYI: ZipFile optimizations

2006-02-15 Thread Jeroen Frijters
Hi, Committed. Regards, Jeroen 2006-02-15 Jeroen Frijters [EMAIL PROTECTED] * java/util/zip/ZipFile.java (checkZipFile): Inlined readLeInt and rewritten for robustness. (readLeShort(DataInput,byte[]), readLeInt(DataInput,byte[], readLeShort(byte[],int),

[cp-patches] FYI: BasicTableUI fix

2006-02-15 Thread Roman Kennke
We were painting the vertical and horizontal grid lines in JTable one pixel too far left/below on the first pixel row of the adjecent table cell, whereas they should really be painted on the last pixel row of the current cell. This patch fixes this. This makes the cells nicely aligned with the

[cp-patches] FYI: SpinnerNumberModel getNextValue()/getPreviousValue() fix

2006-02-15 Thread David Gilbert
The getNextValue() and getPreviousValue() methods in the SpinnerNumberModel throw a NullPointerException if the maximum / minimum values are not set. This patch (committed) prevents that from happening: 2006-02-15 David Gilbert [EMAIL PROTECTED] *

Re: [cp-patches] FYI: SpinnerNumberModel getNextValue()/getPreviousValue() fix

2006-02-15 Thread David Gilbert
I checked SpinnerDateModel and it doesn't have the same problem, but I committed Mauve test cases in any case. Regards, Dave David Gilbert wrote: The getNextValue() and getPreviousValue() methods in the SpinnerNumberModel throw a NullPointerException if the maximum / minimum values are

[cp-patches] RFC: up and down movement selection

2006-02-15 Thread Robert Schuster
Hi, with this patch JTextArea's caret learns to move and select up and down correctly. The patch mainly adds code that updates the so called magic caret position. In the respective actions this properties value is then used to determine the new location. The actions for up down selections are,

Re: [cp-patches] [Patch]

2006-02-15 Thread Mark Wielaard
Hi, On Wed, 2006-02-15 at 00:12 +0100, Michael Koch wrote: 2006-02-15 Michael Koch [EMAIL PROTECTED] * native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkEmbeddedWindowPeer.c (Java_gnu_java_awt_peer_gtk_GtkEmbeddedWindowPeer_create): Make sure the embedded window gets no

Re: [cp-patches] RFC: up and down movement selection

2006-02-15 Thread Roman Kennke
Hi Robert, Am Mittwoch, den 15.02.2006, 12:32 +0100 schrieb Robert Schuster: Hi, with this patch JTextArea's caret learns to move and select up and down correctly. The patch mainly adds code that updates the so called magic caret position. In the respective actions this properties value is

[cp-patches] More datatype library implementation

2006-02-15 Thread Chris Burdess
I committed some more of the missing parts of the datatype library implementation. 2006-02-15 Chris Burdess [EMAIL PROTECTED] * gnu/xml/validation/datatype/BooleanType.java, gnu/xml/validation/datatype/ByteType.java, gnu/xml/validation/datatype/DateTimeType.java,

[cp-patches] FYI: JSpinner / BasicSpinnerUI fixes

2006-02-15 Thread David Gilbert
Hi, This patch makes our JSpinner usable (it was broken) and more compatible with the reference implementation (I added a lot of Mauve tests to ensure this). I also added a small demo app that I used for basic testing: 2006-02-15 David Gilbert [EMAIL PROTECTED] *

Re: [cp-patches] FYI: JSpinner / BasicSpinnerUI fixes

2006-02-15 Thread Roman Kennke
Am Mittwoch, den 15.02.2006, 16:32 + schrieb David Gilbert: Hi, This patch makes our JSpinner usable (it was broken) and more compatible with the reference implementation (I added a lot of Mauve tests to ensure this). I also added a small demo app that I used for basic testing:

[cp-patches] FYI: JComponent fixes

2006-02-15 Thread Roman Kennke
This fixes a small but annoying painting issue that happens if some components are invisible. Also, I removed some useless 'optimization' from repaint() that caused unnecessary creation of Rectangle objects. 2006-02-15 Roman Kennke [EMAIL PROTECTED] * javax/swing/JComponent.java

[cp-patches] FYI: JInternal frame fixlet

2006-02-15 Thread Roman Kennke
In JInternalFrame we should not call hide() but call setVisible(false) instead. The difference is that we override setVisible() in JComponent and queue a repaint request for the parent, so that the hiding actually becomes visible. 2006-02-15 Roman Kennke [EMAIL PROTECTED] *

[cp-patches] FYI: JInternalFrame closing

2006-02-15 Thread Roman Kennke
This fixes the setClosed() method on JInternalFrame to actually close the frame. From what I read from the specs of this method, this should call dispose() to do so. 2006-02-15 Roman Kennke [EMAIL PROTECTED] * javax/swing/JInternalFrame.java (setClosed): Call dispose to

Re: [cp-patches] [Patch]

2006-02-15 Thread Tom Tromey
Mark == Mark Wielaard [EMAIL PROTECTED] writes: Mark This introduced a small compile error with --enable-Werror. Please use Mark this configure option always when hacking on any C code. Anybody have an objection to adding this option to the Eclipse configure launcher? Is anybody using Eclipse

Re: [cp-patches] [Patch]

2006-02-15 Thread Thomas Fitzsimmons
- GtkWidget *window; + GtkWindow *window; GtkWidget *fixed; gdk_threads_enter (); NSA_SET_GLOBAL_REF (env, obj); - window = gtk_plug_new ((GdkNativeWindow) socket_id); + window = GTK_WINDOW (gtk_plug_new ((GdkNativeWindow) socket_id)); gtk_window_set_decorated

Re: [cp-patches] Patch: GtkDialogPeer fix

2006-02-15 Thread Thomas Fitzsimmons
On Tue, 2006-02-14 at 17:49 -0500, Lillian Angel wrote: On Tue, 2006-02-14 at 14:41 -0500, Lillian Angel wrote: When the location of a Dialog is changed before it is visible, it does not take any effect. The Dialog would appear at some arbitrary location. This is now fixed. 2006-02-14

Re: [cp-patches] [Patch]

2006-02-15 Thread Mark Wielaard
Hi Tom, On Wed, 2006-02-15 at 12:49 -0500, Thomas Fitzsimmons wrote: - GtkWidget *window; + GtkWindow *window; [...] - window = gtk_plug_new ((GdkNativeWindow) socket_id); + window = GTK_WINDOW (gtk_plug_new ((GdkNativeWindow) socket_id)); A simpler fix and one more in line with

[cp-patches] Request for approval in deserialization fix

2006-02-15 Thread Olivier Jolly
Hi, as discussed on irc, I request the approval of this fix in the deserialization part with the following changelog : 2006-02-15 Olivier jolly [EMAIL PROTECTED] Fixed bug #14144 * java/io/ObjectInputStream.java (readClassDescriptor) Class doesn't have to be abstract for

[cp-patches] Request for approval in serialization fix

2006-02-15 Thread Olivier Jolly
Hi, here is another individual fix proposition in the serialization area, but in the serialization process itself this time. I propose to commit it with the following changelog : 2006-02-15 Olivier Jolly [EMAIL PROTECTED] * java/io/ObjectOutputStream.java (writeClassDescriptor): Call

Re: [cp-patches] Request for approval in serialization fix

2006-02-15 Thread Mark Wielaard
Hi Olivier, On Wed, 2006-02-15 at 19:23 +0100, Olivier Jolly wrote: 2006-02-15 Olivier Jolly [EMAIL PROTECTED] * java/io/ObjectOutputStream.java (writeClassDescriptor): Call assignNewHandle() after writing Proxy class. Look great. Please commit. Thanks, Mark signature.asc

Re: [cp-patches] [Patch]

2006-02-15 Thread Mark Wielaard
Hi Tom, On Wed, 2006-02-15 at 13:30 -0500, Thomas Fitzsimmons wrote: A simpler fix and one more in line with the rest of the peer code is to change the added line to: gtk_window_set_decorated (GTK_WINDOW (window), FALSE); OK. I'll change it in a minute. What is precisely the

Re: [cp-patches] FYI: GtkDialogPeer fix

2006-02-15 Thread Lillian Angel
Can you run the gnu.testlet.java.awt tests from Mauve as well as the Window/Frame/Dialog related vte tests? I think we found that we needed to set the width and height, as well as the location (i.e. we needed to call setBounds) before showing the window. These tests still pass. I also found

[cp-patches] One of the recent patches breaks JTable editing

2006-02-15 Thread Audrius Meskauskas
One of the recently (today) introduced patches completely breaks the JTable editing, as it is seen in the Swing activity board. This blocks our work on JTable, please do not leave in such condition for long. Audrius

Re: [cp-patches] FYI: JComponent fixes

2006-02-15 Thread Audrius Meskauskas
This introduces regressions on the JTable editing that starts working again after reverting. Also, the painting seems slower and sometimes I observe the window parts painted larger than expected. Roman Kennke wrote: This fixes a small but annoying painting issue that happens if some

[cp-patches] FYI: Implementing the column resizing with mouse for JTable

2006-02-15 Thread Audrius Meskauskas
This patch adds the table column resizing possibility by dragging the column boundary in the header (same as in Sun's version). The existing column resizing algorithm was not suitable as the by resizing the column boundary was drifting away from the current position of the mouse cursor, and

[cp-patches] Patch: gnu_java_awt_peer_gtk_GtkWindowPeer fix

2006-02-15 Thread Lillian Angel
For some odd reason there were so many definitions of the same methods in gnu_java_awt_peer_gtk_GtkWindowPeer.c. I removed them. This may have been my fault, I just cant recall how they would have got in there! 2006-02-15 Lillian Angel [EMAIL PROTECTED] *

[cp-patches] FYI: Documenting some methods in javax.swing

2006-02-15 Thread Audrius Meskauskas
2006-02-15 Audrius Meskauskas [EMAIL PROTECTED] * javax/swing/JTable.java, javax/swing/plaf/basic/BasicTableHeaderUI.java, javax/swing/table/DefaultTableModel.java: Documented. Index: javax/swing/JTable.java === RCS file:

Re: [cp-patches] FYI: JComponent fixes

2006-02-15 Thread Audrius Meskauskas
Roman Kennke wrote: Index: javax/swing/JComponent.java @@ -2206,12 +2205,8 @@ */ public void repaint(long tm, int x, int y, int width, int height) { -Rectangle dirty = new Rectangle(x, y, width, height); -Rectangle vis = getVisibleRect(); -dirty =

[cp-patches] RFC: Menu(Peer) related cleanups

2006-02-15 Thread Mark Wielaard
Hi, The following patch cleans up the last awt Menu related bits. It is mainly a documentation of the gtk+ peer infrastructure and a few tweaks to make the parent MenuContainer always responsible for the MenuItems it contains. This finally makes my MenuMenu testcase and the hsqldb DatabaseManager

[cp-testresults] FAIL: classpath build with gcj (4.0) on Wed Feb 15 10:55:58 UTC 2006

2006-02-15 Thread cpdev
then mv -f .deps/gnu_java_awt_peer_gtk_GtkCheckboxGroupPeer.Tpo .deps/gnu_java_awt_peer_gtk_GtkCheckboxGroupPeer.Plo; else rm -f .deps/gnu_java_awt_peer_gtk_GtkCheckboxGroupPeer.Tpo; exit 1; fi gcc -DHAVE_CONFIG_H -I. -I../../../../classpath/native/jni/gtk-peer -I../../../include

[cp-testresults] FAIL: classpath build with jikes on Wed Feb 15 11:11:46 UTC 2006

2006-02-15 Thread cpdev
then mv -f .deps/gnu_java_awt_peer_gtk_GtkCheckboxGroupPeer.Tpo .deps/gnu_java_awt_peer_gtk_GtkCheckboxGroupPeer.Plo; else rm -f .deps/gnu_java_awt_peer_gtk_GtkCheckboxGroupPeer.Tpo; exit 1; fi gcc -DHAVE_CONFIG_H -I. -I../../../../classpath/native/jni/gtk-peer -I../../../include

[cp-testresults] FAIL: regressions for libgcj on Wed Feb 15 16:02:35 UTC 2006

2006-02-15 Thread cpdev
Baseline from: Wed Feb 15 11:48:17 UTC 2006 Regressions: FAIL: Thread_Sleep -O3 output - bytecode-native test FAIL: Thread_Sleep -O3 output - source compiled test Totals: PASS: 3391 XPASS: 0 FAIL: 2 XFAIL: 10 ___ Classpath-testresults mailing list

[cp-testresults] FAIL: regressions for libgcj on Thu Feb 16 00:53:13 UTC 2006

2006-02-15 Thread cpdev
Baseline from: Wed Feb 15 11:48:17 UTC 2006 Regressions: FAIL: Thread_Sleep -O3 output - bytecode-native test Totals: PASS: 3392 XPASS: 0 FAIL: 1 XFAIL: 10 ___ Classpath-testresults mailing list Classpath-testresults@gnu.org

Re: Ldap support in classpath

2006-02-15 Thread Robert Schuster
Hi. Erwin Rol wrote: Hey all, I am trying to get Open Xchange working with gcj, and so far things are going OK. Now i ran into a problem with LDAP. OX uses InitialLdapContext(...) to create a initial context. Later it uses javax.naming.InitialContext.getNameInNamespace(...) and that always

Re: Ldap support in classpath

2006-02-15 Thread Chris Burdess
Erwin Rol wrote: I am trying to get Open Xchange working with gcj, and so far things are going OK. Now i ran into a problem with LDAP. OX uses InitialLdapContext(...) to create a initial context. Later it uses javax.naming.InitialContext.getNameInNamespace(...) and that always seem to throw

Re: Ldap support in classpath

2006-02-15 Thread Erwin Rol
On Wed, 2006-02-15 at 09:36 +0100, Robert Schuster wrote: I think what is missing here is someone with good knowledge on the details of javax.naming. Well that isn't me, I am just trying to get OX working, and stumbled over the naming thing. Naturally volunteers are more than welcome. :)

how do you run classpath?

2006-02-15 Thread simon place
while browsing, trying to solve a problem, came across classpath, but when i tried it i found a bug in the bit i wanted to use,( URL class ) which appeared easy to fix, wrote what i thought was a fix but now can't seem to find a nice way to run it. i am trying NOT to set up another

Re: Ldap support in classpath

2006-02-15 Thread Erwin Rol
On Wed, 2006-02-15 at 14:37 +0100, Mark Wielaard wrote: Hi Erwin, On Wed, 2006-02-15 at 14:08 +0100, Erwin Rol wrote: I am just trying to get OX working, and stumbled over the naming thing. This might be a new issue. I know that in the past some people did try to get it working already.

Re: Ldap support in classpath

2006-02-15 Thread Mark Wielaard
Hi Erwin, On Wed, 2006-02-15 at 14:08 +0100, Erwin Rol wrote: I am just trying to get OX working, and stumbled over the naming thing. This might be a new issue. I know that in the past some people did try to get it working already. There were a couple of small issues though. Upstream was aware

Re: Ldap support in classpath

2006-02-15 Thread Mark Wielaard
Hi Erwin, On Wed, 2006-02-15 at 14:58 +0100, Erwin Rol wrote: There is no effort at all to remove com.sun. stuff from OX, at least all the issues from those mails are still in the sourcecode, including the BASE64, JNDI, javamail and ldap stuff. :( that is a pity. That makes it a lot harder

RE: how do you run classpath?

2006-02-15 Thread Jeroen Frijters
simon place wrote: while browsing, trying to solve a problem, came across classpath, but when i tried it i found a bug in the bit i wanted to use,( URL class ) which appeared easy to fix, wrote what i thought was a fix but now can't seem to find a nice way to run it. i am trying NOT to

Re: Ldap support in classpath

2006-02-15 Thread Erwin Rol
On Wed, 2006-02-15 at 09:36 +0100, Robert Schuster wrote: Hi. Erwin Rol wrote: Hey all, I am trying to get Open Xchange working with gcj, and so far things are going OK. Now i ran into a problem with LDAP. OX uses InitialLdapContext(...) to create a initial context. Later it uses

[Bug swing/26301] JTableHeader needs possibility to change the cursor shape, but GLightweightPeer.setCursor is a silent stub.

2006-02-15 Thread audriusa at bluewin dot ch
--- Comment #1 from audriusa at bluewin dot ch 2006-02-15 11:49 --- I am not sure, probably JTableHeader just needs another, more functional peer. -- audriusa at bluewin dot ch changed: What|Removed |Added

Re: Ldap support in classpath

2006-02-15 Thread Stuart Ballard
It can't and it shouldn't, it's a deliberate design decision of japi. There's absolutely no possible conceivable way for japi to know that a particular method *needs* to be overridden, because overriding a method or not is purely an implementation decision. For example, at first glance it's

Another minor japi change

2006-02-15 Thread Stuart Ballard
I just found and partially fixed a longstanding bug in japi - it was ignoring members declared in non-public superclasses. Apparently these members *are* accessible. I noticed this because the comparison between jdk14 and jdk15 was reporting a bunch of methods in StringBuffer as missing, because

[Bug swing/26301] New: GLightweightPeer.setCursor is a silent stub.

2006-02-15 Thread audriusa at bluewin dot ch
It is not possible to set the alternative cursor shape with Component.setCursor(..). The functionality is delegated to GLightweightPeer.setCursor that returns without action. The possibility to change the cursor is needed for the proper implementation of the JTable column resizing. --

Re: Another minor japi change

2006-02-15 Thread Stuart Ballard
False alarm (temporarily), this change doesn't seem to have actually worked. I'll look into it later when I have more time. Stuart. On 2/15/06, Stuart Ballard [EMAIL PROTECTED] wrote: I just found and partially fixed a longstanding bug in japi - it was ignoring members declared in non-public

Re: Japi diffs for classpath

2006-02-15 Thread Stuart Ballard
On 2/15/06, Stuart Ballard [EMAIL PROTECTED] wrote: ... +Total: 98.7% good, 1.06% missing +Fields: 160 missing. Well, that's an interesting result I suppose. Still having problems in this department; sorry for the spam. While that change certainly made a difference there are still at least two

[FOSDEM] Friday meeting?

2006-02-15 Thread Keith Seitz
Hello all, The Classpath FOSDEM page mentions a Friday night gathering of attendees, requesting that anyone who knows Brussels suggest a place to meet. Well, I don't know Brussels, but I do have a book or two on Brussels, and I know a beer/wine importer or two. :-) So, I would like to

Re: [FOSDEM] Friday meeting?

2006-02-15 Thread Tom Tromey
Keith == Keith Seitz [EMAIL PROTECTED] writes: Keith A La Mort Subite - 7 rue Montagne aux Herbes Potageres I like the name, I vote for here. Tom

[Bug classpath/26312] New: ChunkedInputStream..read() returns incorrect values.

2006-02-15 Thread daney at gcc dot gnu dot org
Look at the code below, if the high bit in the byte is set read returns a negitive number. The is clearly in violation of the specification which says the value must be between 0 - 255. 85 : public int read() 86 : throws IOException 87 : { 88 : byte[] buf

Re: [FOSDEM] Friday meeting?

2006-02-15 Thread Andrew Haley
Tom Tromey writes: Keith == Keith Seitz [EMAIL PROTECTED] writes: Keith A La Mort Subite - 7 rue Montagne aux Herbes Potageres I like the name, I vote for here. A La Mort Subite is a great place. It also has the advantage of being pretty big. If it doesn't work out there we can

[commit-cp] classpath ./ChangeLog native/jni/gtk-peer/gnu_j...

2006-02-15 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/02/15 09:00:25 Modified files: . : ChangeLog native/jni/gtk-peer:

[commit-cp] classpath ./ChangeLog java/util/zip/ZipFile.java

2006-02-15 Thread Jeroen Frijters
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Jeroen Frijters [EMAIL PROTECTED] 06/02/15 09:25:40 Modified files: . : ChangeLog java/util/zip : ZipFile.java Log message: 2006-02-15 Jeroen Frijters

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

2006-02-15 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/02/15 10:27:02 Modified files: javax/swing/plaf/basic: BasicTableUI.java . : ChangeLog Log message: 2006-02-15 Roman

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

2006-02-15 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 06/02/15 10:55:44 Modified files: . : ChangeLog javax/swing: SpinnerNumberModel.java Log message: 2006-02-15 David

[commit-cp] classpath ./ChangeLog native/jni/gtk-peer/gnu_j...

2006-02-15 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Mark Wielaard [EMAIL PROTECTED] 06/02/15 12:09:06 Modified files: . : ChangeLog native/jni/gtk-peer:

[commit-cp] classpath ./ChangeLog gnu/xml/validation/dataty...

2006-02-15 Thread Chris Burdess
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Chris Burdess [EMAIL PROTECTED] 06/02/15 14:37:10 Modified files: . : ChangeLog gnu/xml/validation/datatype: BooleanType.java ByteType.java

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

2006-02-15 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 06/02/15 16:20:13 Modified files: . : ChangeLog javax/swing: JSpinner.java javax/swing/plaf/basic: BasicSpinnerUI.java

[commit-cp] classpath javax/swing/JInternalFrame.java ./Cha...

2006-02-15 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/02/15 17:22:27 Modified files: javax/swing: JInternalFrame.java . : ChangeLog Log message: 2006-02-15 Roman Kennke

[commit-cp] classpath javax/swing/JInternalFrame.java ./Cha...

2006-02-15 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/02/15 17:32:31 Modified files: javax/swing: JInternalFrame.java . : ChangeLog Log message: 2006-02-15 Roman Kennke

[commit-cp] classpath ./ChangeLog native/jni/gtk-peer/gnu_j...

2006-02-15 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Mark Wielaard [EMAIL PROTECTED] 06/02/15 18:56:17 Modified files: . : ChangeLog native/jni/gtk-peer:

[commit-cp] classpath ./ChangeLog java/io/ObjectInputStream...

2006-02-15 Thread Olivier Jolly
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: Olivier Jolly [EMAIL PROTECTED] 06/02/15 18:40:34 Modified files: . : ChangeLog java/io: ObjectInputStream.java Log message: 2006-02-15 Olivier

[commit-cp] classpath ./ChangeLog java/io/ObjectOutputStrea...

2006-02-15 Thread Olivier Jolly
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: Olivier Jolly [EMAIL PROTECTED] 06/02/15 18:43:04 Modified files: . : ChangeLog java/io: ObjectOutputStream.java Log message: 2006-02-15 Olivier

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

2006-02-15 Thread Lillian Angel
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: Lillian Angel [EMAIL PROTECTED] 06/02/15 19:29:25 Modified files: . : ChangeLog gnu/java/awt/peer/gtk: GtkDialogPeer.java GtkWindowPeer.java include:

[commit-cp] classpath javax/swing/JComponent.java javax/swi...

2006-02-15 Thread Audrius Meskauskas
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: Audrius Meskauskas [EMAIL PROTECTED] 06/02/15 20:29:33 Modified files: javax/swing: JComponent.java JTable.java javax/swing/plaf/basic: BasicTableHeaderUI.java .

[commit-cp] classpath/javax/swing JComponent.java

2006-02-15 Thread Audrius Meskauskas
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: Audrius Meskauskas [EMAIL PROTECTED] 06/02/15 21:58:28 Modified files: javax/swing: JComponent.java Log message: Returning to the version 1.101. The revert to the 1.100 was

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

2006-02-15 Thread Audrius Meskauskas
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: Audrius Meskauskas [EMAIL PROTECTED] 06/02/15 21:48:32 Modified files: javax/swing/plaf/basic: BasicTableHeaderUI.java . : ChangeLog javax/swing: JTable.java

[commit-cp] classpath ./ChangeLog gnu/java/lang/CharData.ja...

2006-02-15 Thread Anthony Balkissoon
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Anthony Balkissoon [EMAIL PROTECTED] 06/02/15 23:00:38 Modified files: . : ChangeLog gnu/java/lang : CharData.java java/lang : Character.java String.java