diff options
author | Christian Lippka <cl@openoffice.org> | 2001-07-13 09:53:17 +0000 |
---|---|---|
committer | Christian Lippka <cl@openoffice.org> | 2001-07-13 09:53:17 +0000 |
commit | 89f7d3c07af3a591918e7f052a6c30bafa684058 (patch) | |
tree | cc756ce195626687502b8c7e17f9ca47c3d4e720 /svx/source/unoedit/unotext.cxx | |
parent | e782d59e9a9380750691a9aedd2072f10e394c1b (diff) |
#89645# call the right base method on queryAggregation, not the same
Diffstat (limited to 'svx/source/unoedit/unotext.cxx')
-rw-r--r-- | svx/source/unoedit/unotext.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/unoedit/unotext.cxx b/svx/source/unoedit/unotext.cxx index 130d89b82100..1bb336e7f273 100644 --- a/svx/source/unoedit/unotext.cxx +++ b/svx/source/unoedit/unotext.cxx @@ -2,9 +2,9 @@ * * $RCSfile: unotext.cxx,v $ * - * $Revision: 1.24 $ + * $Revision: 1.25 $ * - * last change: $Author: cl $ $Date: 2001-07-10 07:41:32 $ + * last change: $Author: cl $ $Date: 2001-07-13 10:53:17 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1839,7 +1839,7 @@ uno::Sequence< uno::Type > SAL_CALL getStaticTypes() throw() // uno::XInterface uno::Any SAL_CALL SvxUnoText::queryAggregation( const uno::Type & rType ) throw( uno::RuntimeException ) { - uno::Any aAny( SvxUnoText::queryAggregation( rType ) ); + uno::Any aAny( SvxUnoTextBase::queryAggregation( rType ) ); if( !aAny.hasValue() ) aAny = OWeakAggObject::queryAggregation( rType ); |