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.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/osl/pipe.hxx b/include/osl/pipe.hxx
index b4a8bc955eb3..b1cc1e6b5f40 100644
--- a/include/osl/pipe.hxx
+++ b/include/osl/pipe.hxx
@@ -25,12 +25,12 @@ namespace osl
{
inline Pipe::Pipe()
- : m_handle( 0 )
+ : m_handle( NULL )
{}
inline Pipe::Pipe(const ::rtl::OUString& strName, oslPipeOptions Options )
- : m_handle( osl_createPipe( strName.pData, Options , 0 ) )
+ : m_handle( osl_createPipe( strName.pData, Options , NULL ) )
{}
@@ -101,7 +101,7 @@ namespace osl
inline bool SAL_CALL Pipe::is() const
{
- return m_handle != 0;
+ return m_handle != NULL;
}
@@ -122,7 +122,7 @@ namespace osl
if( m_handle )
{
osl_releasePipe( m_handle );
- m_handle = 0;
+ m_handle = NULL;
}
}
@@ -139,7 +139,7 @@ namespace osl
inline oslPipeError SAL_CALL Pipe::getError() const
{
- return osl_getLastPipeError( 0 );
+ return osl_getLastPipeError( NULL );
}