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.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/svl/source/fsstor/ostreamcontainer.cxx b/svl/source/fsstor/ostreamcontainer.cxx
index 0089784c18da..ce02f524f6a2 100644
--- a/svl/source/fsstor/ostreamcontainer.cxx
+++ b/svl/source/fsstor/ostreamcontainer.cxx
@@ -75,7 +75,7 @@ uno::Any SAL_CALL OFSStreamContainer::queryInterface( const uno::Type& rType )
, static_cast<embed::XExtendedStorageStream*> ( this )
, static_cast<lang::XComponent*> ( this ) );
- if ( aReturn.hasValue() == sal_True )
+ if ( aReturn.hasValue() )
return aReturn ;
if ( m_xSeekable.is() )
@@ -84,7 +84,7 @@ uno::Any SAL_CALL OFSStreamContainer::queryInterface( const uno::Type& rType )
( rType
, static_cast<io::XSeekable*> ( this ) );
- if ( aReturn.hasValue() == sal_True )
+ if ( aReturn.hasValue() )
return aReturn ;
}
@@ -94,7 +94,7 @@ uno::Any SAL_CALL OFSStreamContainer::queryInterface( const uno::Type& rType )
( rType
, static_cast<io::XInputStream*> ( this ) );
- if ( aReturn.hasValue() == sal_True )
+ if ( aReturn.hasValue() )
return aReturn ;
}
if ( m_xOutputStream.is() )
@@ -103,7 +103,7 @@ uno::Any SAL_CALL OFSStreamContainer::queryInterface( const uno::Type& rType )
( rType
, static_cast<io::XOutputStream*> ( this ) );
- if ( aReturn.hasValue() == sal_True )
+ if ( aReturn.hasValue() )
return aReturn ;
}
if ( m_xTruncate.is() )
@@ -112,7 +112,7 @@ uno::Any SAL_CALL OFSStreamContainer::queryInterface( const uno::Type& rType )
( rType
, static_cast<io::XTruncate*> ( this ) );
- if ( aReturn.hasValue() == sal_True )
+ if ( aReturn.hasValue() )
return aReturn ;
}
if ( m_xAsyncOutputMonitor.is() )
@@ -121,7 +121,7 @@ uno::Any SAL_CALL OFSStreamContainer::queryInterface( const uno::Type& rType )
( rType
, static_cast<io::XAsyncOutputMonitor*> ( this ) );
- if ( aReturn.hasValue() == sal_True )
+ if ( aReturn.hasValue() )
return aReturn ;
}