summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpobjstrm.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/lwpobjstrm.cxx')
-rw-r--r--lotuswordpro/source/filter/lwpobjstrm.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/lotuswordpro/source/filter/lwpobjstrm.cxx b/lotuswordpro/source/filter/lwpobjstrm.cxx
index 458de2d47d8e..8d5567b84e34 100644
--- a/lotuswordpro/source/filter/lwpobjstrm.cxx
+++ b/lotuswordpro/source/filter/lwpobjstrm.cxx
@@ -64,7 +64,7 @@
/**
* @descr ctor() from LwpSvStream
*/
-LwpObjectStream::LwpObjectStream(LwpSvStream *pStrm, BOOL isCompressed, sal_uInt16 size)
+LwpObjectStream::LwpObjectStream(LwpSvStream *pStrm, sal_Bool isCompressed, sal_uInt16 size)
:m_pContentBuf(NULL), m_nBufSize(size), m_nReadPos(0),
m_pStrm(pStrm), m_bCompressed(isCompressed)
{
@@ -189,14 +189,14 @@ void LwpObjectStream::SeekRel(sal_uInt16 pos)
/**
* @descr Seek to pos in object buffer/buffer
*/
-BOOL LwpObjectStream::Seek( sal_uInt16 pos)
+sal_Bool LwpObjectStream::Seek( sal_uInt16 pos)
{
if (pos < m_nBufSize)
{
m_nReadPos = pos;
- return TRUE;
+ return sal_True;
}
- return FALSE;
+ return sal_False;
}
/**