INTEGRATION: CWS tbe28 (1.13.14); FILE MERGED
2006/08/03 09:54:50 obr 1.13.14.1: do not assert SENSITIVE state changes
This commit is contained in:
parent
31a869ef8f
commit
91bfebe87f
1 changed files with 5 additions and 2 deletions
|
@ -4,9 +4,9 @@
|
|||
*
|
||||
* $RCSfile: Component.java,v $
|
||||
*
|
||||
* $Revision: 1.13 $
|
||||
* $Revision: 1.14 $
|
||||
*
|
||||
* last change: $Author: kz $ $Date: 2006-02-01 14:30:59 $
|
||||
* last change: $Author: vg $ $Date: 2006-11-01 15:07:29 $
|
||||
*
|
||||
* The Contents of this file are made available subject to
|
||||
* the terms of GNU Lesser General Public License Version 2.1.
|
||||
|
@ -247,6 +247,9 @@ public abstract class Component extends java.awt.Component {
|
|||
case AccessibleStateType.SELECTED:
|
||||
fireStatePropertyChange(AccessibleState.SELECTED, enable);
|
||||
break;
|
||||
case AccessibleStateType.SENSITIVE:
|
||||
// This state equals ENABLED in OOo (but not in Gtk+) and does not exist in Java 1.5
|
||||
break;
|
||||
case AccessibleStateType.SHOWING:
|
||||
// fireStatePropertyChange(AccessibleState.SHOWING, enable);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue