From 20f014d1c2b93a2d5f3c563bbf3fb4f7372396ce Mon Sep 17 00:00:00 2001 From: Daniel Boelzle Date: Wed, 15 Nov 2000 11:28:29 +0000 Subject: sequence ctor opt --- cppu/inc/com/sun/star/uno/Sequence.hxx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'cppu/inc') diff --git a/cppu/inc/com/sun/star/uno/Sequence.hxx b/cppu/inc/com/sun/star/uno/Sequence.hxx index 50b85c452163..9ad96f8459e6 100644 --- a/cppu/inc/com/sun/star/uno/Sequence.hxx +++ b/cppu/inc/com/sun/star/uno/Sequence.hxx @@ -2,9 +2,9 @@ * * $RCSfile: Sequence.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: pluby $ $Date: 2000-10-10 17:39:11 $ + * last change: $Author: dbo $ $Date: 2000-11-15 12:28:26 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -118,7 +118,6 @@ inline Sequence< E >::Sequence( const Sequence< E > & rSeq ) //__________________________________________________________________________________________________ template< class E > inline Sequence< E >::Sequence( const E * pElements, sal_Int32 len ) - : _pSequence( 0 ) { const Type & rType = ::getCppuType( this ); ::uno_type_sequence_construct( &_pSequence, rType.getTypeLibType(), @@ -127,7 +126,6 @@ inline Sequence< E >::Sequence( const E * pElements, sal_Int32 len ) //__________________________________________________________________________________________________ template< class E > inline Sequence< E >::Sequence( sal_Int32 len ) - : _pSequence( 0 ) { const Type & rType = ::getCppuType( this ); ::uno_type_sequence_construct( &_pSequence, rType.getTypeLibType(), 0, len, cpp_acquire ); -- cgit