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 | 400845e0fa6a43d64a84aee7df7ed1b85a6f6b40 (patch) | |
tree | 2077e1b77029bd0f8d190d80b66607f760f933a6 /io/source | |
parent | 7c021b3126a3aab9514de359a2a07f2a4217e0d6 (diff) |
rename IFIFO due to AIX conflict
Diffstat (limited to 'io/source')
-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 63afcf8766c4..f728daaefcb5 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" )), |