summaryrefslogtreecommitdiff
path: root/include/osl/pipe.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/osl/pipe.hxx')
-rw-r--r--include/osl/pipe.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/osl/pipe.hxx b/include/osl/pipe.hxx
index e1bb0d32b926..fe4766f5ff99 100644
--- a/include/osl/pipe.hxx
+++ b/include/osl/pipe.hxx
@@ -67,7 +67,7 @@ namespace osl
}
//______________________________________________________________________________
- inline sal_Bool Pipe::create( const ::rtl::OUString & strName,
+ inline bool Pipe::create( const ::rtl::OUString & strName,
oslPipeOptions Options, const Security &rSec )
{
*this = Pipe( strName, Options, rSec );
@@ -75,7 +75,7 @@ namespace osl
}
//______________________________________________________________________________
- inline sal_Bool Pipe::create( const ::rtl::OUString & strName, oslPipeOptions Options )
+ inline bool Pipe::create( const ::rtl::OUString & strName, oslPipeOptions Options )
{
*this = Pipe( strName, Options );
return is();
@@ -99,13 +99,13 @@ namespace osl
}
//______________________________________________________________________________
- inline sal_Bool SAL_CALL Pipe::is() const
+ inline bool SAL_CALL Pipe::is() const
{
return m_handle != 0;
}
//______________________________________________________________________________
- inline sal_Bool SAL_CALL Pipe::operator==( const Pipe& rPipe ) const
+ inline bool SAL_CALL Pipe::operator==( const Pipe& rPipe ) const
{
return m_handle == rPipe.m_handle;
}