diff options
author | Daniel Boelzle <dbo@openoffice.org> | 2000-11-15 11:28:29 +0000 |
---|---|---|
committer | Daniel Boelzle <dbo@openoffice.org> | 2000-11-15 11:28:29 +0000 |
commit | 20f014d1c2b93a2d5f3c563bbf3fb4f7372396ce (patch) | |
tree | cadd3e9a10a99e9aa8beb48078f53e6aa1e25b02 /cppu/inc | |
parent | 753e2352559398f3ed9c73f42f5314a8c394f4b4 (diff) |
sequence ctor opt
Diffstat (limited to 'cppu/inc')
-rw-r--r-- | cppu/inc/com/sun/star/uno/Sequence.hxx | 6 |
1 files changed, 2 insertions, 4 deletions
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 ); |