summaryrefslogtreecommitdiff
path: root/svl/source/fsstor/oinputstreamcontainer.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-09-27 11:20:55 +0200
committerMichael Stahl <mstahl@redhat.com>2012-10-02 14:57:21 +0200
commitd5abaeb1614c65947c7c9674a319511b0450c357 (patch)
tree6590237ec28c283f0cd4638d72835e368317a94f /svl/source/fsstor/oinputstreamcontainer.cxx
parent2c270eeff422ef93100376ce0717a131d4f3cc2f (diff)
sal_Bool->bool in svl::OFSInputStreamContainer and OFSStreamContainer
Also make OFSInputStreamContainer's member variables private, there is no reason for them to be protected Change-Id: Ic5717b5a3740e27adfc0ee55e7677a8727b8cbae
Diffstat (limited to 'svl/source/fsstor/oinputstreamcontainer.cxx')
-rw-r--r--svl/source/fsstor/oinputstreamcontainer.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svl/source/fsstor/oinputstreamcontainer.cxx b/svl/source/fsstor/oinputstreamcontainer.cxx
index e8a53c772b17..d43b02101c10 100644
--- a/svl/source/fsstor/oinputstreamcontainer.cxx
+++ b/svl/source/fsstor/oinputstreamcontainer.cxx
@@ -27,8 +27,8 @@ using namespace ::com::sun::star;
OFSInputStreamContainer::OFSInputStreamContainer( const uno::Reference< io::XInputStream >& xStream )
: m_xInputStream( xStream )
, m_xSeekable( xStream, uno::UNO_QUERY )
-, m_bSeekable( sal_False )
-, m_bDisposed( sal_False )
+, m_bSeekable( false )
+, m_bDisposed( false )
, m_pListenersContainer( NULL )
{
m_bSeekable = m_xSeekable.is();
@@ -302,7 +302,7 @@ void SAL_CALL OFSInputStreamContainer::dispose( )
m_pListenersContainer->disposeAndClear( aSource );
}
- m_bDisposed = sal_True;
+ m_bDisposed = true;
}
//-----------------------------------------------