summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2001-04-15 17:48:16 +0000
committerTom Tromey <tromey@redhat.com>2001-04-15 17:48:16 +0000
commit0ec5e7b37a1e18c6ef465f942a0de71970b45ba2 (patch)
tree539001206f9b8423a6ccf2679dcd7f9d642d2130
parentfb5c47ee7e34d5715ad002e3c5503e4e7870a90e (diff)
downloadclasspath-0ec5e7b37a1e18c6ef465f942a0de71970b45ba2.tar.gz
2001-04-15 Ian D. Stewart <idstewart@softhome.net>
* javax/accessibility/AccessibleComponent.java (getAccessibleAt): Added identifier 'point' to method declaration.
-rw-r--r--ChangeLog5
-rw-r--r--javax/accessibility/AccessibleComponent.java4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 3c3d66b46..03835c865 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-04-15 Ian D. Stewart <idstewart@softhome.net>
+
+ * javax/accessibility/AccessibleComponent.java (getAccessibleAt): Added
+ identifier 'point' to method declaration.
+
2001-03-24 Bryce McKinlay <bryce@albatross.co.nz>
* java/util/HashMap.java (HashMap): If 0 is given for initialCapacity
diff --git a/javax/accessibility/AccessibleComponent.java b/javax/accessibility/AccessibleComponent.java
index c09318d79..d8975f26f 100644
--- a/javax/accessibility/AccessibleComponent.java
+++ b/javax/accessibility/AccessibleComponent.java
@@ -1,6 +1,6 @@
/* AccessibleComponent.java -- Java interface for aiding in accessibly rendering
other Java components
- Copyright (C) 2000 Free Software Foundation, Inc.
+ Copyright (C) 2000, 2001 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -81,7 +81,7 @@ public abstract interface AccessibleComponent {
* @return <code>null</code> if no <code>Accessible</code> child exists
* at the given point
*/
- public abstract Accessible getAccessibleAt(Point);
+ public abstract Accessible getAccessibleAt(Point point);
/**
* Get the background color of this component.