Custom Query (172 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (103 - 105 of 172)

Ticket Resolution Summary Owner Reporter
#202 fixed Make java.awt.TextArea work dmik
Description

Currently the java.awt.TextArea? class is not functioning. Just a black area which is never repainted and gets filled with garbage after some time.

#203 fixed Open file dialog in AWT doesn't work. dmik
Description

If an AWT program shows this dialog, it can't be dismissed and directory navigation doesn't actually work. The details and an example are here: http://svn.netlabs.org/odin32/ticket/93.

#240 fixed Starting java.exe from ash/dash breaks command line arguments with spaces dmik
Description

Given this hello.java:

public class hello
{
  public static void main(String args[])
  {
    System.out.println("hello world!");
    for (int i = 0; i < args.length; ++i)
      System.out.println("arg["+i+"]=["+args[i]+"]");
  }
}

and this SH script:

D:/Tools/openjdk6_b27_sdk_os2_ga5-20130217/bin/java.exe -cp . hello "1 2" 3

you get this output if the script is run by bash:

hello world!
arg[0]=[1 2]
arg[1]=[3]

and this output if it's run by ash/dash:

hello world!
arg[0]=[1]
arg[1]=[2]
arg[2]=[3]

Apparently, in the second case spaces are handled incorrectly.

Note: See TracQuery for help on using queries.