summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwpobjstrm.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-22 14:14:14 +0200
committerNoel Grandin <noel@peralex.com>2014-04-23 11:11:50 +0200
commit2692047aacef7b4288f995ce6ff2db5e16b71014 (patch)
tree2d43552ad1a01cfb6287d54f35b5ae3ca538393b /lotuswordpro/source/filter/lwpobjstrm.hxx
parentlingucomponent: sal_Bool->bool (diff)
downloadcore-2692047aacef7b4288f995ce6ff2db5e16b71014.tar.gz
core-2692047aacef7b4288f995ce6ff2db5e16b71014.zip
lotuswordpro: sal_Bool->bool
Change-Id: I017d284a2fbc8d50a9928c9d934ffe710b0c652f
Diffstat (limited to 'lotuswordpro/source/filter/lwpobjstrm.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpobjstrm.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/lotuswordpro/source/filter/lwpobjstrm.hxx b/lotuswordpro/source/filter/lwpobjstrm.hxx
index 4fbfeff62a64..5c6f3aa9fd3f 100644
--- a/lotuswordpro/source/filter/lwpobjstrm.hxx
+++ b/lotuswordpro/source/filter/lwpobjstrm.hxx
@@ -75,7 +75,7 @@
class LwpObjectStream
{
public:
- LwpObjectStream(LwpSvStream *pStrm, sal_Bool isCompressed, sal_uInt16 size);
+ LwpObjectStream(LwpSvStream *pStrm, bool isCompressed, sal_uInt16 size);
~LwpObjectStream();
private:
sal_uInt8* m_pContentBuf; //The content buffer of the object
@@ -87,16 +87,16 @@ private:
sal_uInt16 m_nBufSize; //The total size of m_pContentBuf
sal_uInt16 m_nReadPos; //The position of the quick read
LwpSvStream* m_pStrm;
- sal_Bool m_bCompressed;
+ bool m_bCompressed;
public:
sal_uInt16 QuickRead(void* buf, sal_uInt16 len);
sal_uInt16 GetPos() { return m_nReadPos; }
void SeekRel(sal_uInt16 pos);
- sal_Bool Seek( sal_uInt16 pos);
+ bool Seek( sal_uInt16 pos);
void SkipExtra();
sal_uInt16 CheckExtra();
- sal_Bool QuickReadBool(bool *pFailure=NULL);
+ bool QuickReadBool(bool *pFailure=NULL);
sal_uInt32 QuickReaduInt32(bool *pFailure=NULL);
sal_uInt16 QuickReaduInt16(bool *pFailure=NULL);
sal_uInt8 QuickReaduInt8(bool *pFailure=NULL);