diff options
author | Thomas Benisch <tbe@openoffice.org> | 2002-06-21 09:18:26 +0000 |
---|---|---|
committer | Thomas Benisch <tbe@openoffice.org> | 2002-06-21 09:18:26 +0000 |
commit | d093d67f9bbe9fe5f35c9494b2d31a64240b674d (patch) | |
tree | 1945cb2a7afb7c23ed210bf36212f9caa95703f7 /toolkit/source | |
parent | efdac2a2aec5f0bedf7d31efe23cc9fc88845a7d (diff) |
#100253# implemented getAccessibleRelationSet()
Diffstat (limited to 'toolkit/source')
-rw-r--r-- | toolkit/source/awt/vclxaccessiblecomponent.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/toolkit/source/awt/vclxaccessiblecomponent.cxx b/toolkit/source/awt/vclxaccessiblecomponent.cxx index f05a60efdef4..0885b7a7d123 100644 --- a/toolkit/source/awt/vclxaccessiblecomponent.cxx +++ b/toolkit/source/awt/vclxaccessiblecomponent.cxx @@ -2,9 +2,9 @@ * * $RCSfile: vclxaccessiblecomponent.cxx,v $ * - * $Revision: 1.24 $ + * $Revision: 1.25 $ * - * last change: $Author: tbe $ $Date: 2002-06-21 08:47:18 $ + * last change: $Author: tbe $ $Date: 2002-06-21 10:18:26 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -591,7 +591,7 @@ uno::Reference< accessibility::XAccessibleRelationSet > VCLXAccessibleComponent: if ( pWindow ) { Window *pLabeledBy = pWindow->GetLabeledBy(); - if( pLabeledBy ) + if ( pLabeledBy ) { uno::Sequence< uno::Reference< uno::XInterface > > aSequence(1); aSequence[0] = pLabeledBy->GetAccessible(); |