diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-10-13 13:39:57 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-10-13 20:31:42 +0100 |
commit | 4d91f9c645d1da1a52d699d33e47259873ce6202 (patch) | |
tree | 1875c9723d80cac000fb399c6b74f774a54bd2d5 /io | |
parent | aba4270b310fb32cc96e2094c6b72794890e1260 (diff) |
rename IFIFO due to AIX conflict
Diffstat (limited to 'io')
-rw-r--r-- | io/source/stm/opipe.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/io/source/stm/opipe.cxx b/io/source/stm/opipe.cxx index f87d98c78..1e82b0171 100644 --- a/io/source/stm/opipe.cxx +++ b/io/source/stm/opipe.cxx @@ -134,7 +134,7 @@ private: oslCondition m_conditionBytesAvail; Mutex m_mutexAccess; - IFIFO *m_pFIFO; + I_FIFO *m_pFIFO; }; @@ -346,13 +346,13 @@ void OPipeImpl::writeBytes(const Sequence< sal_Int8 >& aData) } m_nBytesToSkip = 0; } - catch ( IFIFO_OutOfBoundsException & ) + catch ( I_FIFO_OutOfBoundsException & ) { throw BufferSizeExceededException( OUString( RTL_CONSTASCII_USTRINGPARAM( "Pipe::writeBytes BufferSizeExceededException" )), *this ); } - catch ( IFIFO_OutOfMemoryException & ) + catch ( I_FIFO_OutOfMemoryException & ) { throw BufferSizeExceededException( OUString( RTL_CONSTASCII_USTRINGPARAM( "Pipe::writeBytes BufferSizeExceededException" )), |