Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (22 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/java/awt/Cursor.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    4545public class Cursor implements java.io.Serializable
    4646{
     47
     48
    4749  /**
    4850  * Constant for the system default cursor type
     
    132134   *
    133135   * @param type The cursor type.
     136
     137
    134138   */
    135139  public Cursor(int type)
     
    137141    if (type < 0 || type >= PREDEFINED_COUNT)
    138142      throw new IllegalArgumentException ("invalid cursor " + type);
     143
    139144    this.type = type;
    140145    // FIXME: lookup and set name?
     
    170175  }
    171176
     177
     178
     179
     180
     181
     182
     183
     184
    172185  public static Cursor getSystemCustomCursor(String name)
    173186                                      throws AWTException
    174187  {
     188
     189
     190
    175191    // FIXME
    176192    return null;
Note: See TracChangeset for help on using the changeset viewer.