summaryrefslogtreecommitdiff
path: root/poppler/JArithmeticDecoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'poppler/JArithmeticDecoder.h')
-rw-r--r--poppler/JArithmeticDecoder.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/poppler/JArithmeticDecoder.h b/poppler/JArithmeticDecoder.h
index 3f4f0737..9e651702 100644
--- a/poppler/JArithmeticDecoder.h
+++ b/poppler/JArithmeticDecoder.h
@@ -67,9 +67,9 @@ public:
JArithmeticDecoder& operator=(const JArithmeticDecoder &) = delete;
void setStream(Stream *strA)
- { str = strA; dataLen = 0; limitStream = gFalse; }
+ { str = strA; dataLen = 0; limitStream = false; }
void setStream(Stream *strA, int dataLenA)
- { str = strA; dataLen = dataLenA; limitStream = gTrue; }
+ { str = strA; dataLen = dataLenA; limitStream = true; }
// Start decoding on a new stream. This fills the byte buffers and
// runs INITDEC.
@@ -91,7 +91,7 @@ public:
int decodeByte(Guint context, JArithmeticDecoderStats *stats);
// Returns false for OOB, otherwise sets *<x> and returns true.
- GBool decodeInt(int *x, JArithmeticDecoderStats *stats);
+ bool decodeInt(int *x, JArithmeticDecoderStats *stats);
Guint decodeIAID(Guint codeLen,
JArithmeticDecoderStats *stats);
@@ -119,7 +119,7 @@ private:
Stream *str;
Guint nBytesRead;
int dataLen;
- GBool limitStream;
+ bool limitStream;
};
#endif