summaryrefslogtreecommitdiff
path: root/io/source/stm/opump.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'io/source/stm/opump.cxx')
-rw-r--r--io/source/stm/opump.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/io/source/stm/opump.cxx b/io/source/stm/opump.cxx
index ef8678a39129..d5c010e66356 100644
--- a/io/source/stm/opump.cxx
+++ b/io/source/stm/opump.cxx
@@ -64,7 +64,7 @@ namespace io_stm {
Reference< XInputStream > m_xInput;
Reference< XOutputStream > m_xOutput;
OInterfaceContainerHelper m_cnt;
- sal_Bool m_closeFired;
+ bool m_closeFired;
void run();
static void static_run( void* pObject );
@@ -107,7 +107,7 @@ namespace io_stm {
Pump::Pump() : m_aThread( 0 ),
m_cnt( m_aMutex ),
- m_closeFired( sal_False )
+ m_closeFired( false )
{
}
@@ -139,13 +139,13 @@ void Pump::fireError( const Any & exception )
void Pump::fireClose()
{
- sal_Bool bFire = sal_False;
+ bool bFire = false;
{
MutexGuard guard( m_aMutex );
if( ! m_closeFired )
{
- m_closeFired = sal_True;
- bFire = sal_True;
+ m_closeFired = true;
+ bFire = true;
}
}