diff options
author | Ocke Janssen <oj@openoffice.org> | 2002-11-13 10:26:15 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2002-11-13 10:26:15 +0000 |
commit | f61c599604ea5193afc564b87529893e7c18975a (patch) | |
tree | 4704b1a978053bb3ece854bbf1aaf05471f41cbc /svtools/source/brwbox/brwbox3.cxx | |
parent | 02d3eaf3b62ea1b4f76d25c22f91eaa5f0321b7c (diff) |
#104936# correct delegation to control accessible
Diffstat (limited to 'svtools/source/brwbox/brwbox3.cxx')
-rw-r--r-- | svtools/source/brwbox/brwbox3.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/svtools/source/brwbox/brwbox3.cxx b/svtools/source/brwbox/brwbox3.cxx index 359fd2609ca7..0d0b5e5a7aaf 100644 --- a/svtools/source/brwbox/brwbox3.cxx +++ b/svtools/source/brwbox/brwbox3.cxx @@ -2,9 +2,9 @@ * * $RCSfile: brwbox3.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: pb $ $Date: 2002-09-13 12:34:10 $ + * last change: $Author: oj $ $Date: 2002-11-13 11:26:15 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -403,7 +403,8 @@ void BrowseBox::FillAccessibleStateSetForCell( ::utl::AccessibleStateSetHelper& _rStateSet.AddState( AccessibleStateType::VISIBLE ); if ( GetCurrRow() == _nRow && GetCurrColumn() == _nColumn ) _rStateSet.AddState( AccessibleStateType::FOCUSED ); - _rStateSet.AddState( AccessibleStateType::TRANSIENT ); + else // only transient when column is not focused + _rStateSet.AddState( AccessibleStateType::TRANSIENT ); } // ----------------------------------------------------------------------------- |