i'm sending some code

Rizsanyi Zsolt kaffe@rufus.w3.org
Thu, 29 Jun 2000 12:01:48 +0200



On Wed, 28 Jun 2000 13:16:55 -0700 (PDT)
Archie Cobbs <archie@whistle.com> wrote:

> 
> Fixed.. thanks!
> 
> -Archie

Here is some more:

The method:

public synchronized void remove ( int index ) {
	if (index >= 0 && index < items.size()) {
		items.removeElementAt( index);
	}
}

is missing from java.awt.Choice - Altough I have just looked in the
widgets directory and have not checked the win32 stuff

So this should be added to
libraries/javalib/java/awt/widgets/Choice.java
A don't know about:
libraries/javalib/java/awt/win32/Choice.java

Zsolt Rizsanyi <rizsanyi@altavista.net>