Kaydet (Commit) eb4d34b5 authored tarafından Kurt Zenker's avatar Kurt Zenker

INTEGRATION: CWS gcc340fixes01 (1.15.480); FILE MERGED

2004/07/15 17:21:16 hr 1.15.480.1: #i31534#: gcc-3.4.1 port: AccessibleShapeInfo has no copy ctor which seems to be needed if AccessibleShapeInfo object is created on the fly. I can't see why the copy ctor should be needed here, gcc bug?
üst 87497f9e
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
* *
* $RCSfile: GraphCtlAccessibleContext.cxx,v $ * $RCSfile: GraphCtlAccessibleContext.cxx,v $
* *
* $Revision: 1.16 $ * $Revision: 1.17 $
* *
* last change: $Author: rt $ $Date: 2004-07-12 14:31:54 $ * last change: $Author: kz $ $Date: 2004-07-30 15:45:52 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
...@@ -251,9 +251,10 @@ Reference< XAccessible > SAL_CALL SvxGraphCtrlAccessibleContext::getAccessible( ...@@ -251,9 +251,10 @@ Reference< XAccessible > SAL_CALL SvxGraphCtrlAccessibleContext::getAccessible(
// create a new one and remember in our internal map // create a new one and remember in our internal map
Reference< XShape > xShape( Reference< XShape >::query( (const_cast<SdrObject*>(pObj))->getUnoShape() ) ); Reference< XShape > xShape( Reference< XShape >::query( (const_cast<SdrObject*>(pObj))->getUnoShape() ) );
AccessibleShapeInfo aShapeInfo (xShape,mxParent);
// Create accessible object that corresponds to the descriptor's shape. // Create accessible object that corresponds to the descriptor's shape.
AccessibleShape* pAcc = ShapeTypeHandler::Instance().CreateAccessibleObject( AccessibleShape* pAcc = ShapeTypeHandler::Instance().CreateAccessibleObject(
AccessibleShapeInfo (xShape,mxParent), maTreeInfo); aShapeInfo, maTreeInfo);
xAccessibleShape = pAcc; xAccessibleShape = pAcc;
if (pAcc != NULL) if (pAcc != NULL)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment