summaryrefslogtreecommitdiff
path: root/svx/source/accessibility/SvxShapeTypes.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-07-01 14:19:06 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-07-01 14:19:06 +0000
commit66cb3d7b40ed4f251ba2f47c4fe8d8c2cda499d3 (patch)
tree16b72be43625378fc4d5bed1e5446e7415b15586 /svx/source/accessibility/SvxShapeTypes.cxx
parent71696eadbcd001331d915c5ee1bc27075358af17 (diff)
INTEGRATION: CWS sw30a11y01 (1.16.64); FILE MERGED
2008/05/19 10:26:56 od 1.16.64.1: #i85429# add default accessibility implementation for com::sun::star::drawing::MediaShape
Diffstat (limited to 'svx/source/accessibility/SvxShapeTypes.cxx')
-rw-r--r--svx/source/accessibility/SvxShapeTypes.cxx9
1 files changed, 8 insertions, 1 deletions
diff --git a/svx/source/accessibility/SvxShapeTypes.cxx b/svx/source/accessibility/SvxShapeTypes.cxx
index 63546e0f142c..d3dea52a5aea 100644
--- a/svx/source/accessibility/SvxShapeTypes.cxx
+++ b/svx/source/accessibility/SvxShapeTypes.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: SvxShapeTypes.cxx,v $
- * $Revision: 1.16 $
+ * $Revision: 1.17 $
*
* This file is part of OpenOffice.org.
*
@@ -73,6 +73,10 @@ AccessibleShape* CreateSvxAccessibleShape (
// com::sun::star::drawing::CustomShape
case DRAWING_CUSTOM:
// <--
+ // --> OD 2008-05-19 #i85429# - default accessiblility shape for
+ // com::sun::star::drawing::MediaShape
+ case DRAWING_MEDIA:
+ // <--
return new AccessibleShape (rShapeInfo, rShapeTreeInfo);
case DRAWING_CONTROL:
@@ -188,6 +192,9 @@ ShapeTypeDescriptor aSvxShapeTypeList[] = {
ShapeTypeDescriptor ( DRAWING_TABLE,
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.drawing.TableShape" ) ),
CreateSvxAccessibleShape ),
+ ShapeTypeDescriptor ( DRAWING_MEDIA,
+ rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.drawing.MediaShape" ) ),
+ CreateSvxAccessibleShape ),
};