diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-21 20:34:12 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-22 08:22:32 +0100 |
commit | 01fe7b72389bb2f8de45d8319728807d8048b1d3 (patch) | |
tree | 6bea04371cb07c1d0d705b72f4513638891c02e4 /package/source/xstor/oseekinstream.cxx | |
parent | 8fd7a53d3cf1ed788c705cafb443801203787c9d (diff) |
bool improvements
Change-Id: I80dfcb60878d9e280e8a03297ccc4833277c235d
Diffstat (limited to 'package/source/xstor/oseekinstream.cxx')
-rw-r--r-- | package/source/xstor/oseekinstream.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/source/xstor/oseekinstream.cxx b/package/source/xstor/oseekinstream.cxx index 15d06c6abb2d..6abdcf3794e2 100644 --- a/package/source/xstor/oseekinstream.cxx +++ b/package/source/xstor/oseekinstream.cxx @@ -86,7 +86,7 @@ uno::Any SAL_CALL OInputSeekStream::queryInterface( const uno::Type& rType ) uno::Any aReturn( ::cppu::queryInterface( rType, static_cast< io::XSeekable* >( this ) ) ); - if ( aReturn.hasValue() == sal_True ) + if ( aReturn.hasValue() ) { return aReturn ; } |