diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2003-06-06 09:53:22 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2003-06-06 09:53:22 +0000 |
commit | 4f23f866e33b6c0f710d677514bc4614b42d4c18 (patch) | |
tree | 362fc37317b710c5d086a4594f557f4d0d24d371 /svtools/source/brwbox/editbrowsebox.cxx | |
parent | ddb9ee9838c6a10b135a251e3a1903bf260e67ea (diff) |
INTEGRATION: CWS dba07 (1.21.4); FILE MERGED
2003/05/28 16:15:34 fs 1.21.4.1: #109746# minor changes
Diffstat (limited to 'svtools/source/brwbox/editbrowsebox.cxx')
-rw-r--r-- | svtools/source/brwbox/editbrowsebox.cxx | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/svtools/source/brwbox/editbrowsebox.cxx b/svtools/source/brwbox/editbrowsebox.cxx index ed4282e972c6..e17223d484eb 100644 --- a/svtools/source/brwbox/editbrowsebox.cxx +++ b/svtools/source/brwbox/editbrowsebox.cxx @@ -2,9 +2,9 @@ * * $RCSfile: editbrowsebox.cxx,v $ * - * $Revision: 1.21 $ + * $Revision: 1.22 $ * - * last change: $Author: vg $ $Date: 2003-05-19 13:05:17 $ + * last change: $Author: vg $ $Date: 2003-06-06 10:53:22 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -119,6 +119,9 @@ #ifndef _SVTOOLS_ACCESSIBILEEDITBROWSEBOXTABLECELL_HXX #include "editbrowseboxcell.hxx" #endif +#ifndef _SVTOOLS_ACCESSIBLEBROWSEBOX_HXX +#include "AccessibleBrowseBox.hxx" +#endif // ....................................................................... namespace svt @@ -1071,7 +1074,7 @@ namespace svt aController->SetModifyHdl(LINK(this,EditBrowseBox,ModifyHdl)); EnableAndShow(); - if ( isAccessibleAlive( ) ) + if ( isAccessibleAlive() ) implCreateActiveAccessible(); // activate the cell only of the browser has the focus @@ -1082,10 +1085,13 @@ namespace svt { // no controller -> we have a new "active descendant" if ( isAccessibleAlive() && HasFocus() ) - commitTableEvent(ACTIVE_DESCENDANT_CHANGED, + { + commitTableEvent( + ACTIVE_DESCENDANT_CHANGED, makeAny( CreateAccessibleCell( nRow, GetColumnPos( nCol ) ) ), Any() ); + } } } } |