diff options
author | Kurt Zenker <kz@openoffice.org> | 2005-07-14 09:24:39 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2005-07-14 09:24:39 +0000 |
commit | bb4c09070f89c0a185d06191e9dc38526f4c24d6 (patch) | |
tree | 08b787566cdf82e2f72ecbf98b8f69eebe4ee257 /sd | |
parent | a12117b2ef566d373fc475cc9fba662d6a116908 (diff) |
INTEGRATION: CWS impress51 (1.3.46); FILE MERGED
2005/05/20 09:04:36 af 1.3.46.1: #i48247# Added CreateAccessibleObject() method.
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/toolpanel/controls/CustomAnimationPanel.cxx | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/sd/source/ui/toolpanel/controls/CustomAnimationPanel.cxx b/sd/source/ui/toolpanel/controls/CustomAnimationPanel.cxx index a9fb5b5cf5a0..42df9024ce87 100644 --- a/sd/source/ui/toolpanel/controls/CustomAnimationPanel.cxx +++ b/sd/source/ui/toolpanel/controls/CustomAnimationPanel.cxx @@ -2,9 +2,9 @@ * * $RCSfile: CustomAnimationPanel.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: kz $ $Date: 2005-03-18 17:00:40 $ + * last change: $Author: kz $ $Date: 2005-07-14 10:24:39 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -119,4 +119,17 @@ bool CustomAnimationPanel::IsExpandable() const } + + +::com::sun::star::uno::Reference< + ::com::sun::star::accessibility::XAccessible> CustomAnimationPanel::CreateAccessibleObject ( + const ::com::sun::star::uno::Reference< + ::com::sun::star::accessibility::XAccessible>& rxParent) +{ + if (GetWindow() != NULL) + return GetWindow()->GetAccessible(); + else + return NULL; +} + } } } // end of namespace ::sd::toolpanel::controls |