summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Ganz <glenn.ganz@uptime.ch>2009-10-16 20:54:32 +0200
committerAlbert Astals Cid <aacid@kde.org>2009-10-16 20:56:16 +0200
commitc2458275e02f56226779b82d73c13defcbbda563 (patch)
tree46c06c54d9d866f478e48264aecae2224b285118
parentfd91b79c053bb5cd01a766032b90981dbc5e5dd3 (diff)
fix constructor of DCTStream
-rw-r--r--poppler/Stream.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/poppler/Stream.cc b/poppler/Stream.cc
index 01efcd6f..7137c5ea 100644
--- a/poppler/Stream.cc
+++ b/poppler/Stream.cc
@@ -18,6 +18,7 @@
// Copyright (C) 2007 Krzysztof Kowalczyk <kkowalczyk@gmail.com>
// Copyright (C) 2008 Julien Rebetez <julien@fhtagn.net>
// Copyright (C) 2009 Carlos Garcia Campos <carlosgc@gnome.org>
+// Copyright (C) 2009 Glenn Ganz <glenn.ganz@uptime.ch>
//
// To see a description of the changes please see the Changelog file that
// came with your tarball or type make ChangeLog if you are building from git
@@ -2030,7 +2031,7 @@ static const int dctZigZag[64] = {
63
};
-DCTStream::DCTStream(Stream *strA, GBool colorXformA):
+DCTStream::DCTStream(Stream *strA, int colorXformA):
FilterStream(strA) {
int i, j;