diff options
author | Christian Lippka <cl@openoffice.org> | 2001-12-07 09:53:18 +0000 |
---|---|---|
committer | Christian Lippka <cl@openoffice.org> | 2001-12-07 09:53:18 +0000 |
commit | b54d3b939e51802cf2eae675df6b1865ed442afc (patch) | |
tree | 7942e4d7e929c3606639a3e1f23405bdd4465b67 /svx | |
parent | 2bc101886e5984a3c33b3a34744c25774c41eb3f (diff) |
#90330# added XTypeProvider, forgot this
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/unodraw/unoshape.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/svx/source/unodraw/unoshape.cxx b/svx/source/unodraw/unoshape.cxx index 107fd8ddcde1..17043403d8d3 100644 --- a/svx/source/unodraw/unoshape.cxx +++ b/svx/source/unodraw/unoshape.cxx @@ -2,9 +2,9 @@ * * $RCSfile: unoshape.cxx,v $ * - * $Revision: 1.82 $ + * $Revision: 1.83 $ * - * last change: $Author: cl $ $Date: 2001-12-06 17:42:19 $ + * last change: $Author: cl $ $Date: 2001-12-07 10:53:18 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -394,6 +394,8 @@ sal_Bool SvxShape::queryAggregation( const com::sun::star::uno::Type & rType, co aAny <<= uno::Reference< beans::XPropertySet >(this); else if( rType == ::getCppuType((const uno::Reference< drawing::XShape >*)0) ) aAny <<= uno::Reference< drawing::XShape >(this); + else if( rType == ::getCppuType((const uno::Reference< lang::XTypeProvider >*)0) ) + aAny <<= uno::Reference< lang::XTypeProvider >(this); else if( rType == ::getCppuType((const uno::Reference< uno::XAggregation >*)0) ) aAny <<= uno::Reference< uno::XAggregation >(this); else if( rType == ::getCppuType((const uno::Reference< beans::XMultiPropertySet >*)0) ) |