cpp/poppler-private.cpp | 1 + cpp/poppler-private.h | 1 + goo/gtypes.h | 1 + poppler/CairoOutputDev.h | 1 - poppler/Decrypt.cc | 1 + poppler/Decrypt.h | 4 +++- poppler/Error.cc | 1 + poppler/Error.h | 1 + poppler/Gfx.cc | 4 ++-- poppler/Gfx.h | 4 ++-- poppler/Hints.cc | 1 + poppler/Hints.h | 1 + poppler/JBIG2Stream.cc | 1 + poppler/JBIG2Stream.h | 1 + poppler/JPEG2000Stream.cc | 1 + poppler/JPEG2000Stream.h | 1 + poppler/Lexer.cc | 2 +- poppler/Lexer.h | 1 + poppler/Object.cc | 1 + poppler/Object.h | 1 + poppler/OutputDev.h | 1 - poppler/PDFDoc.cc | 1 + poppler/PDFDoc.h | 1 + poppler/PSOutputDev.h | 1 - poppler/PageTransition.cc | 1 + poppler/Parser.cc | 1 + poppler/Parser.h | 1 + poppler/SecurityHandler.cc | 1 + poppler/SplashOutputDev.h | 1 - poppler/Stream.cc | 1 + poppler/Stream.h | 1 + poppler/XRef.cc | 1 + poppler/XRef.h | 1 + poppler/poppler-config.h.cmake | 2 +- poppler/poppler-config.h.in | 2 +- qt4/src/poppler-private.cc | 1 + qt4/src/poppler-qiodeviceoutstream-private.h | 1 + qt4/src/poppler-qiodeviceoutstream.cc | 1 + utils/pdfinfo.cc | 2 +- utils/pdftohtml.cc | 1 - utils/pdfunite.cc | 1 + 41 files changed, 40 insertions(+), 14 deletions(-)
New commits: commit 97e93d7583f2a6a5b1c8b51474744ca05277dc28 Author: Lu Wang <[email protected]> Date: Sat Jan 26 16:56:00 2013 +0100 Remove unused deviceHasTextClip diff --git a/poppler/CairoOutputDev.h b/poppler/CairoOutputDev.h index 2ac1fd5..d35c899 100644 --- a/poppler/CairoOutputDev.h +++ b/poppler/CairoOutputDev.h @@ -192,7 +192,6 @@ public: CharCode code, Unicode *u, int uLen); virtual void endType3Char(GfxState *state); virtual void beginTextObject(GfxState *state); - virtual GBool deviceHasTextClip(GfxState *state) { return textClipPath; } virtual void endTextObject(GfxState *state); //----- image drawing diff --git a/poppler/OutputDev.h b/poppler/OutputDev.h index 5cf87cc..abccffe 100644 --- a/poppler/OutputDev.h +++ b/poppler/OutputDev.h @@ -243,7 +243,6 @@ public: CharCode /*code*/, Unicode * /*u*/, int /*uLen*/); virtual void endType3Char(GfxState * /*state*/) {} virtual void beginTextObject(GfxState * /*state*/) {} - virtual GBool deviceHasTextClip(GfxState * /*state*/) { return gFalse; } virtual void endTextObject(GfxState * /*state*/) {} virtual void incCharCount(int /*nChars*/) {} virtual void beginActualText(GfxState * /*state*/, GooString * /*text*/ ) {} diff --git a/poppler/PSOutputDev.h b/poppler/PSOutputDev.h index 58cbe46..f9dc63c 100644 --- a/poppler/PSOutputDev.h +++ b/poppler/PSOutputDev.h @@ -248,7 +248,6 @@ public: //----- text drawing virtual void drawString(GfxState *state, GooString *s); virtual void beginTextObject(GfxState *state); - virtual GBool deviceHasTextClip(GfxState *state) { return haveTextClip; } virtual void endTextObject(GfxState *state); //----- image drawing diff --git a/poppler/SplashOutputDev.h b/poppler/SplashOutputDev.h index 830356a..dbc1312 100644 --- a/poppler/SplashOutputDev.h +++ b/poppler/SplashOutputDev.h @@ -258,7 +258,6 @@ public: CharCode code, Unicode *u, int uLen); virtual void endType3Char(GfxState *state); virtual void beginTextObject(GfxState *state); - virtual GBool deviceHasTextClip(GfxState *state) { return textClipPath; } virtual void endTextObject(GfxState *state); //----- image drawing diff --git a/utils/pdftohtml.cc b/utils/pdftohtml.cc index 97372be..bcec8cb 100644 --- a/utils/pdftohtml.cc +++ b/utils/pdftohtml.cc @@ -165,7 +165,6 @@ public: CharCode code, Unicode *u, int uLen) { return false; } void endType3Char(GfxState *state) { } void beginTextObject(GfxState *state) { } - GBool deviceHasTextClip(GfxState *state) { return false; } void endTextObject(GfxState *state) { } GBool interpretType3Chars() { return gFalse; } }; commit 1bb3ddc2264cb65dffd553a952ee4518344df0de Author: Albert Astals Cid <[email protected]> Date: Fri Jan 25 19:37:24 2013 +0100 A few Goffsets we missed charactersRead is returned in BaseCryptStream::getPos thus should be a Goffset Gfx::getPos returns Parser::getPos and thus should be a Goffset too diff --git a/poppler/Decrypt.h b/poppler/Decrypt.h index 1a5247a..ac786b9 100644 --- a/poppler/Decrypt.h +++ b/poppler/Decrypt.h @@ -17,6 +17,7 @@ // Copyright (C) 2009 David Benjamin <[email protected]> // Copyright (C) 2012 Fabio D'Urso <[email protected]> // Copyright (C) 2013 Adrian Johnson <[email protected]> +// Copyright (C) 2013 Albert Astals Cid <[email protected]> // // 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 @@ -117,7 +118,7 @@ protected: CryptAlgorithm algo; int objKeyLength; Guchar objKey[32]; - int charactersRead; // so that getPos() can be correct + Goffset charactersRead; // so that getPos() can be correct int nextCharBuff; // EOF means not read yet GBool autoDelete; diff --git a/poppler/Gfx.cc b/poppler/Gfx.cc index 454987e..942ad1b 100644 --- a/poppler/Gfx.cc +++ b/poppler/Gfx.cc @@ -14,7 +14,7 @@ // under GPL version 2 or later // // Copyright (C) 2005 Jonathan Blandford <[email protected]> -// Copyright (C) 2005-2012 Albert Astals Cid <[email protected]> +// Copyright (C) 2005-2013 Albert Astals Cid <[email protected]> // Copyright (C) 2006 Thorkild Stray <[email protected]> // Copyright (C) 2006 Kristian Høgsberg <[email protected]> // Copyright (C) 2006-2011 Carlos Garcia Campos <[email protected]> @@ -895,7 +895,7 @@ GBool Gfx::checkArg(Object *arg, TchkType type) { return gFalse; } -int Gfx::getPos() { +Goffset Gfx::getPos() { return parser ? parser->getPos() : -1; } diff --git a/poppler/Gfx.h b/poppler/Gfx.h index 369bc4c..e7e9ab8 100644 --- a/poppler/Gfx.h +++ b/poppler/Gfx.h @@ -17,7 +17,7 @@ // Copyright (C) 2007 Iñigo MartÃnez <[email protected]> // Copyright (C) 2008 Brad Hards <[email protected]> // Copyright (C) 2008, 2010 Carlos Garcia Campos <[email protected]> -// Copyright (C) 2009-2012 Albert Astals Cid <[email protected]> +// Copyright (C) 2009-2013 Albert Astals Cid <[email protected]> // Copyright (C) 2009, 2010, 2012, 2013 Thomas Freitag <[email protected]> // Copyright (C) 2010 David Benjamin <[email protected]> // Copyright (C) 2010 Christian Feuersänger <[email protected]> @@ -242,7 +242,7 @@ private: void execOp(Object *cmd, Object args[], int numArgs); Operator *findOp(char *name); GBool checkArg(Object *arg, TchkType type); - int getPos(); + Goffset getPos(); int bottomGuard(); commit 5f8b1275a19b2036c6e9323a744d8bc64af31c36 Author: Albert Astals Cid <[email protected]> Date: Fri Jan 25 19:32:58 2013 +0100 New year! diff --git a/poppler/poppler-config.h.cmake b/poppler/poppler-config.h.cmake index 2425f6a..13a92fe 100644 --- a/poppler/poppler-config.h.cmake +++ b/poppler/poppler-config.h.cmake @@ -117,7 +117,7 @@ //------------------------------------------------------------------------ // copyright notice -#define popplerCopyright "Copyright 2005-2012 The Poppler Developers - http://poppler.freedesktop.org" +#define popplerCopyright "Copyright 2005-2013 The Poppler Developers - http://poppler.freedesktop.org" #define xpdfCopyright "Copyright 1996-2011 Glyph & Cog, LLC" //------------------------------------------------------------------------ diff --git a/poppler/poppler-config.h.in b/poppler/poppler-config.h.in index 8975f57..afd3dbd 100644 --- a/poppler/poppler-config.h.in +++ b/poppler/poppler-config.h.in @@ -123,7 +123,7 @@ //------------------------------------------------------------------------ // copyright notice -#define popplerCopyright "Copyright 2005-2012 The Poppler Developers - http://poppler.freedesktop.org" +#define popplerCopyright "Copyright 2005-2013 The Poppler Developers - http://poppler.freedesktop.org" #define xpdfCopyright "Copyright 1996-2011 Glyph & Cog, LLC" //------------------------------------------------------------------------ commit 574907e6a74e62a5ee6d7f17c43fdd9bcb07e069 Author: Albert Astals Cid <[email protected]> Date: Fri Jan 25 19:31:59 2013 +0100 Adrian C for 2013 because of the big files support diff --git a/cpp/poppler-private.cpp b/cpp/poppler-private.cpp index b2fa621..3bee619 100644 --- a/cpp/poppler-private.cpp +++ b/cpp/poppler-private.cpp @@ -1,5 +1,6 @@ /* * Copyright (C) 2009-2010, Pino Toscano <[email protected]> + * Copyright (C) 2013 Adrian Johnson <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/cpp/poppler-private.h b/cpp/poppler-private.h index cf2cc27..3e8873f 100644 --- a/cpp/poppler-private.h +++ b/cpp/poppler-private.h @@ -1,5 +1,6 @@ /* * Copyright (C) 2009, Pino Toscano <[email protected]> + * Copyright (C) 2013 Adrian Johnson <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/goo/gtypes.h b/goo/gtypes.h index 6e9c1ac..53d8cbe 100644 --- a/goo/gtypes.h +++ b/goo/gtypes.h @@ -15,6 +15,7 @@ // // Copyright (C) 2010 Patrick Spendrin <[email protected]> // Copyright (C) 2010 Albert Astals Cid <[email protected]> +// Copyright (C) 2013 Adrian Johnson <[email protected]> // // 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 diff --git a/poppler/Decrypt.cc b/poppler/Decrypt.cc index ad9a9eb..ba44f95 100644 --- a/poppler/Decrypt.cc +++ b/poppler/Decrypt.cc @@ -18,6 +18,7 @@ // Copyright (C) 2009 Matthias Franz <[email protected]> // Copyright (C) 2009 David Benjamin <[email protected]> // Copyright (C) 2012 Fabio D'Urso <[email protected]> +// Copyright (C) 2013 Adrian Johnson <[email protected]> // // 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 diff --git a/poppler/Decrypt.h b/poppler/Decrypt.h index c17cd38..1a5247a 100644 --- a/poppler/Decrypt.h +++ b/poppler/Decrypt.h @@ -16,6 +16,7 @@ // Copyright (C) 2008 Julien Rebetez <[email protected]> // Copyright (C) 2009 David Benjamin <[email protected]> // Copyright (C) 2012 Fabio D'Urso <[email protected]> +// Copyright (C) 2013 Adrian Johnson <[email protected]> // // 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 diff --git a/poppler/Error.cc b/poppler/Error.cc index 9ff7b5d..99ca3ad 100644 --- a/poppler/Error.cc +++ b/poppler/Error.cc @@ -17,6 +17,7 @@ // Copyright (C) 2005 Albert Astals Cid <[email protected]> // Copyright (C) 2007 Krzysztof Kowalczyk <[email protected]> // Copyright (C) 2012 Marek Kasik <[email protected]> +// Copyright (C) 2013 Adrian Johnson <[email protected]> // // 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 diff --git a/poppler/Error.h b/poppler/Error.h index cf8874d..88fc3ea 100644 --- a/poppler/Error.h +++ b/poppler/Error.h @@ -16,6 +16,7 @@ // Copyright (C) 2005, 2007 Jeff Muizelaar <[email protected]> // Copyright (C) 2005 Albert Astals Cid <[email protected]> // Copyright (C) 2005 Kristian Høgsberg <[email protected]> +// Copyright (C) 2013 Adrian Johnson <[email protected]> // // 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 diff --git a/poppler/Hints.cc b/poppler/Hints.cc index 5591535..d76e019 100644 --- a/poppler/Hints.cc +++ b/poppler/Hints.cc @@ -7,6 +7,7 @@ // Copyright 2010, 2012 Hib Eris <[email protected]> // Copyright 2010, 2011 Albert Astals Cid <[email protected]> // Copyright 2010 Pino Toscano <[email protected]> +// Copyright 2013 Adrian Johnson <[email protected]> // //======================================================================== diff --git a/poppler/Hints.h b/poppler/Hints.h index 69d8209..f5225f9 100644 --- a/poppler/Hints.h +++ b/poppler/Hints.h @@ -6,6 +6,7 @@ // // Copyright 2010 Hib Eris <[email protected]> // Copyright 2010 Albert Astals Cid <[email protected]> +// Copyright 2013 Adrian Johnson <[email protected]> // //======================================================================== diff --git a/poppler/JBIG2Stream.cc b/poppler/JBIG2Stream.cc index 7f5e0ec..12de50e 100644 --- a/poppler/JBIG2Stream.cc +++ b/poppler/JBIG2Stream.cc @@ -20,6 +20,7 @@ // Copyright (C) 2011 Edward Jiang <[email protected]> // Copyright (C) 2012 William Bader <[email protected]> // Copyright (C) 2012 Thomas Freitag <[email protected]> +// Copyright (C) 2013 Adrian Johnson <[email protected]> // // 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 diff --git a/poppler/JBIG2Stream.h b/poppler/JBIG2Stream.h index 5c58c49..be1b3bd 100644 --- a/poppler/JBIG2Stream.h +++ b/poppler/JBIG2Stream.h @@ -14,6 +14,7 @@ // under GPL version 2 or later // // Copyright (C) 2009 David Benjamin <[email protected]> +// Copyright (C) 2013 Adrian Johnson <[email protected]> // // 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 diff --git a/poppler/JPEG2000Stream.cc b/poppler/JPEG2000Stream.cc index fcfdece..703d471 100644 --- a/poppler/JPEG2000Stream.cc +++ b/poppler/JPEG2000Stream.cc @@ -6,6 +6,7 @@ // // Copyright 2008-2010, 2012 Albert Astals Cid <[email protected]> // Copyright 2011 Daniel Glöckner <[email protected]> +// Copyright 2013 Adrian Johnson <[email protected]> // // Licensed under GPLv2 or later // diff --git a/poppler/JPEG2000Stream.h b/poppler/JPEG2000Stream.h index 2b7afaf..3feccbe 100644 --- a/poppler/JPEG2000Stream.h +++ b/poppler/JPEG2000Stream.h @@ -6,6 +6,7 @@ // // Copyright 2008, 2010 Albert Astals Cid <[email protected]> // Copyright 2011 Daniel Glöckner <[email protected]> +// Copyright 2013 Adrian Johnson <[email protected]> // // Licensed under GPLv2 or later // diff --git a/poppler/Lexer.cc b/poppler/Lexer.cc index 948b5a8..a0bb35e 100644 --- a/poppler/Lexer.cc +++ b/poppler/Lexer.cc @@ -16,7 +16,7 @@ // Copyright (C) 2006-2010, 2012 Albert Astals Cid <[email protected]> // Copyright (C) 2006 Krzysztof Kowalczyk <[email protected]> // Copyright (C) 2010 Carlos Garcia Campos <[email protected]> -// Copyright (C) 2012 Adrian Johnson <[email protected]> +// Copyright (C) 2012, 2013 Adrian Johnson <[email protected]> // // 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 diff --git a/poppler/Lexer.h b/poppler/Lexer.h index 2a35e39..227508f 100644 --- a/poppler/Lexer.h +++ b/poppler/Lexer.h @@ -15,6 +15,7 @@ // // Copyright (C) 2006, 2007, 2010 Albert Astals Cid <[email protected]> // Copyright (C) 2006 Krzysztof Kowalczyk <[email protected]> +// Copyright (C) 2013 Adrian Johnson <[email protected]> // // 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 diff --git a/poppler/Object.cc b/poppler/Object.cc index 8999a0e..d06bb39 100644 --- a/poppler/Object.cc +++ b/poppler/Object.cc @@ -14,6 +14,7 @@ // under GPL version 2 or later // // Copyright (C) 2008, 2010, 2012 Albert Astals Cid <[email protected]> +// Copyright (C) 2013 Adrian Johnson <[email protected]> // // 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 diff --git a/poppler/Object.h b/poppler/Object.h index b77c0de..1b12354 100644 --- a/poppler/Object.h +++ b/poppler/Object.h @@ -19,6 +19,7 @@ // Copyright (C) 2009 Jakub Wilk <[email protected]> // Copyright (C) 2012 Fabio D'Urso <[email protected]> // Copyright (C) 2013 Thomas Freitag <[email protected]> +// Copyright (C) 2013 Adrian Johnson <[email protected]> // // 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 diff --git a/poppler/PDFDoc.cc b/poppler/PDFDoc.cc index ecc2af5..4f2ac57 100644 --- a/poppler/PDFDoc.cc +++ b/poppler/PDFDoc.cc @@ -28,6 +28,7 @@ // Copyright (C) 2010 Philip Lorenz <[email protected]> // Copyright (C) 2011-2013 Thomas Freitag <[email protected]> // Copyright (C) 2012 Fabio D'Urso <[email protected]> +// Copyright (C) 2013 Adrian Johnson <[email protected]> // // 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 diff --git a/poppler/PDFDoc.h b/poppler/PDFDoc.h index 6fc30f5..8eab095 100644 --- a/poppler/PDFDoc.h +++ b/poppler/PDFDoc.h @@ -24,6 +24,7 @@ // Copyright (C) 2010 Srinivas Adicherla <[email protected]> // Copyright (C) 2011, 2013 Thomas Freitag <[email protected]> // Copyright (C) 2012 Fabio D'Urso <[email protected]> +// Copyright (C) 2013 Adrian Johnson <[email protected]> // // 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 diff --git a/poppler/PageTransition.cc b/poppler/PageTransition.cc index 3403247..441634c 100644 --- a/poppler/PageTransition.cc +++ b/poppler/PageTransition.cc @@ -1,6 +1,7 @@ /* PageTransition.cc * Copyright (C) 2005, Net Integration Technologies, Inc. * Copyright (C) 2010, Albert Astals Cid <[email protected]> + * Copyright (C) 2013 Adrian Johnson <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/poppler/Parser.cc b/poppler/Parser.cc index f31b94f..b59b6c4 100644 --- a/poppler/Parser.cc +++ b/poppler/Parser.cc @@ -18,6 +18,7 @@ // Copyright (C) 2009 Ilya Gorenbein <[email protected]> // Copyright (C) 2012 Hib Eris <[email protected]> // Copyright (C) 2013 Thomas Freitag <[email protected]> +// Copyright (C) 2013 Adrian Johnson <[email protected]> // // 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 diff --git a/poppler/Parser.h b/poppler/Parser.h index cb97caf..adaf913 100644 --- a/poppler/Parser.h +++ b/poppler/Parser.h @@ -15,6 +15,7 @@ // // Copyright (C) 2006, 2010 Albert Astals Cid <[email protected]> // Copyright (C) 2012 Hib Eris <[email protected]> +// Copyright (C) 2013 Adrian Johnson <[email protected]> // // 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 diff --git a/poppler/SecurityHandler.cc b/poppler/SecurityHandler.cc index fad0863..8b85e60 100644 --- a/poppler/SecurityHandler.cc +++ b/poppler/SecurityHandler.cc @@ -14,6 +14,7 @@ // under GPL version 2 or later // // Copyright (C) 2010, 2012 Albert Astals Cid <[email protected]> +// Copyright (C) 2013 Adrian Johnson <[email protected]> // // 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 diff --git a/poppler/Stream.cc b/poppler/Stream.cc index 92d8573..3deab44 100644 --- a/poppler/Stream.cc +++ b/poppler/Stream.cc @@ -27,6 +27,7 @@ // Copyright (C) 2012 Oliver Sander <[email protected]> // Copyright (C) 2012 Fabio D'Urso <[email protected]> // Copyright (C) 2012 Even Rouault <[email protected]> +// Copyright (C) 2013 Adrian Johnson <[email protected]> // // 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 diff --git a/poppler/Stream.h b/poppler/Stream.h index e662706..f6e85ac 100644 --- a/poppler/Stream.h +++ b/poppler/Stream.h @@ -22,6 +22,7 @@ // Copyright (C) 2011, 2012 William Bader <[email protected]> // Copyright (C) 2012, 2013 Thomas Freitag <[email protected]> // Copyright (C) 2012 Fabio D'Urso <[email protected]> +// Copyright (C) 2013 Adrian Johnson <[email protected]> // // 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 diff --git a/poppler/XRef.cc b/poppler/XRef.cc index 1ea0ded..70008ea 100644 --- a/poppler/XRef.cc +++ b/poppler/XRef.cc @@ -22,6 +22,7 @@ // Copyright (C) 2010 Hib Eris <[email protected]> // Copyright (C) 2012, 2013 Thomas Freitag <[email protected]> // Copyright (C) 2012 Fabio D'Urso <[email protected]> +// Copyright (C) 2013 Adrian Johnson <[email protected]> // // 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 diff --git a/poppler/XRef.h b/poppler/XRef.h index 850a523..c9f17c2 100644 --- a/poppler/XRef.h +++ b/poppler/XRef.h @@ -21,6 +21,7 @@ // Copyright (C) 2010 Hib Eris <[email protected]> // Copyright (C) 2012, 2013 Thomas Freitag <[email protected]> // Copyright (C) 2012 Fabio D'Urso <[email protected]> +// Copyright (C) 2013 Adrian Johnson <[email protected]> // // 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 diff --git a/qt4/src/poppler-private.cc b/qt4/src/poppler-private.cc index 8a6dc0d..308a966 100644 --- a/qt4/src/poppler-private.cc +++ b/qt4/src/poppler-private.cc @@ -3,6 +3,7 @@ * Copyright (C) 2006, 2011 by Albert Astals Cid <[email protected]> * Copyright (C) 2008, 2010, 2011 by Pino Toscano <[email protected]> * Copyright (C) 2013 by Thomas Freitag <[email protected]> + * Copyright (C) 2013 Adrian Johnson <[email protected]> * Inspired on code by * Copyright (C) 2004 by Albert Astals Cid <[email protected]> * Copyright (C) 2004 by Enrico Ros <[email protected]> diff --git a/qt4/src/poppler-qiodeviceoutstream-private.h b/qt4/src/poppler-qiodeviceoutstream-private.h index 84f7369..d0d2007 100644 --- a/qt4/src/poppler-qiodeviceoutstream-private.h +++ b/qt4/src/poppler-qiodeviceoutstream-private.h @@ -1,5 +1,6 @@ /* poppler-qiodevicestream-private.h: Qt4 interface to poppler * Copyright (C) 2008, Pino Toscano <[email protected]> + * Copyright (C) 2013 Adrian Johnson <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/qt4/src/poppler-qiodeviceoutstream.cc b/qt4/src/poppler-qiodeviceoutstream.cc index 19e4f75..e3e9f89 100644 --- a/qt4/src/poppler-qiodeviceoutstream.cc +++ b/qt4/src/poppler-qiodeviceoutstream.cc @@ -1,5 +1,6 @@ /* poppler-qiodevicestream.cc: Qt4 interface to poppler * Copyright (C) 2008, Pino Toscano <[email protected]> + * Copyright (C) 2013 Adrian Johnson <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/utils/pdfinfo.cc b/utils/pdfinfo.cc index 22d5c43..8cb9ae1 100644 --- a/utils/pdfinfo.cc +++ b/utils/pdfinfo.cc @@ -17,7 +17,7 @@ // Copyright (C) 2007-2010, 2012 Albert Astals Cid <[email protected]> // Copyright (C) 2010 Hib Eris <[email protected]> // Copyright (C) 2011 Vittal Aithal <[email protected]> -// Copyright (C) 2012 Adrian Johnson <[email protected]> +// Copyright (C) 2012, 2013 Adrian Johnson <[email protected]> // Copyright (C) 2012 Fabio D'Urso <[email protected]> // // To see a description of the changes please see the Changelog file that diff --git a/utils/pdfunite.cc b/utils/pdfunite.cc index f52f92b..071a0d3 100644 --- a/utils/pdfunite.cc +++ b/utils/pdfunite.cc @@ -8,6 +8,7 @@ // Copyright (C) 2012 Arseny Solokha <[email protected]> // Copyright (C) 2012 Fabio D'Urso <[email protected]> // Copyright (C) 2012 Albert Astals Cid <[email protected]> +// Copyright (C) 2013 Adrian Johnson <[email protected]> // //======================================================================== #include <PDFDoc.h>
_______________________________________________ poppler mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/poppler
