diff options
author | Andre Fischer <af@openoffice.org> | 2002-05-06 08:46:54 +0000 |
---|---|---|
committer | Andre Fischer <af@openoffice.org> | 2002-05-06 08:46:54 +0000 |
commit | 497aea2c1e76fb1c868b50a07a29ccbf66726ca4 (patch) | |
tree | 8a3362db96617311b8495a7aad08ee637133a620 /sd/source/ui/accessibility/AccessiblePageShape.cxx | |
parent | 4a2551f1492a1577c48a75adbbc483492a2484b1 (diff) |
#95585# Using new AccessibleShapeInfo class in constructor.
Diffstat (limited to 'sd/source/ui/accessibility/AccessiblePageShape.cxx')
-rw-r--r-- | sd/source/ui/accessibility/AccessiblePageShape.cxx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sd/source/ui/accessibility/AccessiblePageShape.cxx b/sd/source/ui/accessibility/AccessiblePageShape.cxx index 2a065ffd5f9c..3ac4b89ec037 100644 --- a/sd/source/ui/accessibility/AccessiblePageShape.cxx +++ b/sd/source/ui/accessibility/AccessiblePageShape.cxx @@ -2,9 +2,9 @@ * * $RCSfile: AccessiblePageShape.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: af $ $Date: 2002-04-18 17:02:20 $ + * last change: $Author: af $ $Date: 2002-05-06 09:44:29 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -63,6 +63,10 @@ #include "AccessiblePageShape.hxx" #endif +#ifndef _SVX_ACCESSIBILITY_ACCESSIBLE_SHAPE_INFO_HXX +#include <svx/AccessibleShapeInfo.hxx> +#endif + #ifndef _DRAFTS_COM_SUN_STAR_ACCESSIBILITY_ACCESSIBLE_ROLE_HPP_ #include <drafts/com/sun/star/accessibility/AccessibleRole.hpp> #endif @@ -102,7 +106,7 @@ AccessiblePageShape::AccessiblePageShape ( const uno::Reference<XAccessible>& rxParent, const AccessibleShapeTreeInfo& rShapeTreeInfo, long nIndex) - : AccessibleShape (NULL, rxParent, rShapeTreeInfo, nIndex), + : AccessibleShape (AccessibleShapeInfo (NULL, rxParent, nIndex), rShapeTreeInfo), mxPage (rxPage) { // The main part of the initialization is done in the init method which |