Kaydet (Commit) 400845e0 authored tarafından Caolán McNamara's avatar Caolán McNamara

rename IFIFO due to AIX conflict

üst 7c021b31
...@@ -134,7 +134,7 @@ private: ...@@ -134,7 +134,7 @@ private:
oslCondition m_conditionBytesAvail; oslCondition m_conditionBytesAvail;
Mutex m_mutexAccess; Mutex m_mutexAccess;
IFIFO *m_pFIFO; I_FIFO *m_pFIFO;
}; };
...@@ -346,13 +346,13 @@ void OPipeImpl::writeBytes(const Sequence< sal_Int8 >& aData) ...@@ -346,13 +346,13 @@ void OPipeImpl::writeBytes(const Sequence< sal_Int8 >& aData)
} }
m_nBytesToSkip = 0; m_nBytesToSkip = 0;
} }
catch ( IFIFO_OutOfBoundsException & ) catch ( I_FIFO_OutOfBoundsException & )
{ {
throw BufferSizeExceededException( throw BufferSizeExceededException(
OUString( RTL_CONSTASCII_USTRINGPARAM( "Pipe::writeBytes BufferSizeExceededException" )), OUString( RTL_CONSTASCII_USTRINGPARAM( "Pipe::writeBytes BufferSizeExceededException" )),
*this ); *this );
} }
catch ( IFIFO_OutOfMemoryException & ) catch ( I_FIFO_OutOfMemoryException & )
{ {
throw BufferSizeExceededException( throw BufferSizeExceededException(
OUString( RTL_CONSTASCII_USTRINGPARAM( "Pipe::writeBytes BufferSizeExceededException" )), OUString( RTL_CONSTASCII_USTRINGPARAM( "Pipe::writeBytes BufferSizeExceededException" )),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment