summaryrefslogtreecommitdiff
path: root/poppler/DCTStream.h
diff options
context:
space:
mode:
authorOliver Sander <oliver.sander@tu-dresden.de>2018-10-21 08:28:56 +0200
committerAlbert Astals Cid <aacid@kde.org>2018-10-23 14:19:10 +0200
commit163420b48bdddf9084208b3cadf04dafad52d40a (patch)
treee047526fa1d56b914453a6a489f2c91d10e958a3 /poppler/DCTStream.h
parent22dd47a64222bf967d57b986539ae1be46bc06a7 (diff)
Replace GBool, gTrue, and gFalse by bool, true, false, resp.
These are just non-standard names for bool, true, false, respectively. Getting rid of these names saves on layer of mental redirection, and enables proper syntax highlighting in editors.
Diffstat (limited to 'poppler/DCTStream.h')
-rw-r--r--poppler/DCTStream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/poppler/DCTStream.h b/poppler/DCTStream.h
index 41a4759d..6bb81cc4 100644
--- a/poppler/DCTStream.h
+++ b/poppler/DCTStream.h
@@ -62,12 +62,12 @@ public:
int getChar() override;
int lookChar() override;
GooString *getPSFilter(int psLevel, const char *indent) override;
- GBool isBinary(GBool last = gTrue) override;
+ bool isBinary(bool last = true) override;
private:
void init();
- GBool hasGetChars() override { return true; }
+ bool hasGetChars() override { return true; }
int getChars(int nChars, Guchar *buffer) override;
int colorXform;