summaryrefslogtreecommitdiff
path: root/svl/source/fsstor/ostreamcontainer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/fsstor/ostreamcontainer.cxx')
-rw-r--r--svl/source/fsstor/ostreamcontainer.cxx48
1 files changed, 24 insertions, 24 deletions
diff --git a/svl/source/fsstor/ostreamcontainer.cxx b/svl/source/fsstor/ostreamcontainer.cxx
index 99c00d83b908..f7a30ae7650f 100644
--- a/svl/source/fsstor/ostreamcontainer.cxx
+++ b/svl/source/fsstor/ostreamcontainer.cxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -83,11 +83,11 @@ uno::Any SAL_CALL OFSStreamContainer::queryInterface( const uno::Type& rType )
uno::Any aReturn;
aReturn <<= ::cppu::queryInterface
- ( rType
- , static_cast<lang::XTypeProvider*> ( this )
- , static_cast<io::XStream*> ( this )
- , static_cast<embed::XExtendedStorageStream*> ( this )
- , static_cast<lang::XComponent*> ( this ) );
+ ( rType
+ , static_cast<lang::XTypeProvider*> ( this )
+ , static_cast<io::XStream*> ( this )
+ , static_cast<embed::XExtendedStorageStream*> ( this )
+ , static_cast<lang::XComponent*> ( this ) );
if ( aReturn.hasValue() == sal_True )
return aReturn ;
@@ -95,8 +95,8 @@ uno::Any SAL_CALL OFSStreamContainer::queryInterface( const uno::Type& rType )
if ( m_xSeekable.is() )
{
aReturn <<= ::cppu::queryInterface
- ( rType
- , static_cast<io::XSeekable*> ( this ) );
+ ( rType
+ , static_cast<io::XSeekable*> ( this ) );
if ( aReturn.hasValue() == sal_True )
return aReturn ;
@@ -105,8 +105,8 @@ uno::Any SAL_CALL OFSStreamContainer::queryInterface( const uno::Type& rType )
if ( m_xInputStream.is() )
{
aReturn <<= ::cppu::queryInterface
- ( rType
- , static_cast<io::XInputStream*> ( this ) );
+ ( rType
+ , static_cast<io::XInputStream*> ( this ) );
if ( aReturn.hasValue() == sal_True )
return aReturn ;
@@ -114,8 +114,8 @@ uno::Any SAL_CALL OFSStreamContainer::queryInterface( const uno::Type& rType )
if ( m_xOutputStream.is() )
{
aReturn <<= ::cppu::queryInterface
- ( rType
- , static_cast<io::XOutputStream*> ( this ) );
+ ( rType
+ , static_cast<io::XOutputStream*> ( this ) );
if ( aReturn.hasValue() == sal_True )
return aReturn ;
@@ -123,8 +123,8 @@ uno::Any SAL_CALL OFSStreamContainer::queryInterface( const uno::Type& rType )
if ( m_xTruncate.is() )
{
aReturn <<= ::cppu::queryInterface
- ( rType
- , static_cast<io::XTruncate*> ( this ) );
+ ( rType
+ , static_cast<io::XTruncate*> ( this ) );
if ( aReturn.hasValue() == sal_True )
return aReturn ;
@@ -132,8 +132,8 @@ uno::Any SAL_CALL OFSStreamContainer::queryInterface( const uno::Type& rType )
if ( m_xAsyncOutputMonitor.is() )
{
aReturn <<= ::cppu::queryInterface
- ( rType
- , static_cast<io::XAsyncOutputMonitor*> ( this ) );
+ ( rType
+ , static_cast<io::XAsyncOutputMonitor*> ( this ) );
if ( aReturn.hasValue() == sal_True )
return aReturn ;
@@ -156,7 +156,7 @@ void SAL_CALL OFSStreamContainer::release()
OWeakObject::release();
}
-// XTypeProvider
+// XTypeProvider
//-----------------------------------------------
uno::Sequence< uno::Type > SAL_CALL OFSStreamContainer::getTypes()
throw( uno::RuntimeException )
@@ -168,29 +168,29 @@ uno::Sequence< uno::Type > SAL_CALL OFSStreamContainer::getTypes()
if ( m_pTypeCollection == NULL )
{
::cppu::OTypeCollection aTypeCollection
- ( ::getCppuType( ( const uno::Reference< lang::XTypeProvider >* )NULL )
- , ::getCppuType( ( const uno::Reference< embed::XExtendedStorageStream >* )NULL ) );
+ ( ::getCppuType( ( const uno::Reference< lang::XTypeProvider >* )NULL )
+ , ::getCppuType( ( const uno::Reference< embed::XExtendedStorageStream >* )NULL ) );
if ( m_xSeekable.is() )
aTypeCollection = ::cppu::OTypeCollection
- ( ::getCppuType( ( const uno::Reference< io::XSeekable >* )NULL ),
+ ( ::getCppuType( ( const uno::Reference< io::XSeekable >* )NULL ),
aTypeCollection.getTypes() );
if ( m_xInputStream.is() )
aTypeCollection = ::cppu::OTypeCollection
- ( ::getCppuType( ( const uno::Reference< io::XInputStream >* )NULL ),
+ ( ::getCppuType( ( const uno::Reference< io::XInputStream >* )NULL ),
aTypeCollection.getTypes() );
if ( m_xOutputStream.is() )
aTypeCollection = ::cppu::OTypeCollection
- ( ::getCppuType( ( const uno::Reference< io::XOutputStream >* )NULL ),
+ ( ::getCppuType( ( const uno::Reference< io::XOutputStream >* )NULL ),
aTypeCollection.getTypes() );
if ( m_xTruncate.is() )
aTypeCollection = ::cppu::OTypeCollection
- ( ::getCppuType( ( const uno::Reference< io::XTruncate >* )NULL ),
+ ( ::getCppuType( ( const uno::Reference< io::XTruncate >* )NULL ),
aTypeCollection.getTypes() );
if ( m_xAsyncOutputMonitor.is() )
aTypeCollection = ::cppu::OTypeCollection
- ( ::getCppuType( ( const uno::Reference< io::XAsyncOutputMonitor >* )NULL ),
+ ( ::getCppuType( ( const uno::Reference< io::XAsyncOutputMonitor >* )NULL ),
aTypeCollection.getTypes() );
m_pTypeCollection = new ::cppu::OTypeCollection( aTypeCollection );