poppler/Annot.cc | 1 + poppler/Annot.h | 1 + poppler/TextOutputDev.cc | 4 ++-- qt5/src/poppler-form.cc | 1 + qt5/src/poppler-form.h | 1 + qt5/src/poppler-private.cc | 1 + qt5/src/poppler-private.h | 1 + 7 files changed, 8 insertions(+), 2 deletions(-)
New commits: commit 2d191b49ea074cc69ba4c68a572f26c8bdb55abd Author: Albert Astals Cid <[email protected]> Date: Wed Jul 10 01:10:22 2019 +0200 Fix mistake on 093531cd0d0878b892d92ebc56c26936e5de3712 These i should have been j too diff --git a/poppler/TextOutputDev.cc b/poppler/TextOutputDev.cc index e62e088c..645e38fd 100644 --- a/poppler/TextOutputDev.cc +++ b/poppler/TextOutputDev.cc @@ -4791,8 +4791,8 @@ void TextSelectionPainter::endPage() if (j != begin && sel->word->charPos[j] == sel->word->charPos[j - 1]) continue; - out->drawChar(state, sel->word->textMat[i].m[4], sel->word->textMat[i].m[5], 0, 0, 0, 0, - sel->word->charcode[i], 1, nullptr, 0); + out->drawChar(state, sel->word->textMat[j].m[4], sel->word->textMat[j].m[5], 0, 0, 0, 0, + sel->word->charcode[j], 1, nullptr, 0); } out->endString(state); delete string; commit bf7d1b7daa7c573237884f42f28d38ce335ea49b Author: Albert Astals Cid <[email protected]> Date: Tue Jul 9 00:04:48 2019 +0200 Update (C) of last commit diff --git a/poppler/Annot.cc b/poppler/Annot.cc index 005fa96e..bd3aaa5f 100644 --- a/poppler/Annot.cc +++ b/poppler/Annot.cc @@ -43,6 +43,7 @@ // Copyright (C) 2018, 2019 Tobias Deiminger <[email protected]> // Copyright (C) 2018, 2019 Oliver Sander <[email protected]> // Copyright (C) 2019 Umang Malik <[email protected]> +// Copyright (C) 2019 João Netto <[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/Annot.h b/poppler/Annot.h index 7b374644..1c61e701 100644 --- a/poppler/Annot.h +++ b/poppler/Annot.h @@ -32,6 +32,7 @@ // Copyright (C) 2018 Oliver Sander <[email protected]> // Copyright (C) 2018 Adam Reichold <[email protected]> // Copyright (C) 2019 Umang Malik <[email protected]> +// Copyright (C) 2019 João Netto <[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/qt5/src/poppler-form.cc b/qt5/src/poppler-form.cc index 111d5b09..c95a9623 100644 --- a/qt5/src/poppler-form.cc +++ b/qt5/src/poppler-form.cc @@ -9,6 +9,7 @@ * Copyright (C) 2018 Klarälvdalens Datakonsult AB, a KDAB Group company, <[email protected]>. Work sponsored by the LiMux project of the city of Munich * Copyright (C) 2018 Chinmoy Ranjan Pradhan <[email protected]> * Copyright (C) 2018 Oliver Sander <[email protected]> + * Copyright (C) 2019 João Netto <[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/qt5/src/poppler-form.h b/qt5/src/poppler-form.h index ac00da26..4e356b8e 100644 --- a/qt5/src/poppler-form.h +++ b/qt5/src/poppler-form.h @@ -8,6 +8,7 @@ * Copyright (C) 2018, Andre Heinecke <[email protected]> * Copyright (C) 2018, Chinmoy Ranjan Pradhan <[email protected]> * Copyright (C) 2018, Oliver Sander <[email protected]> + * Copyright (C) 2019 João Netto <[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/qt5/src/poppler-private.cc b/qt5/src/poppler-private.cc index 5a8b6e79..a3fbec36 100644 --- a/qt5/src/poppler-private.cc +++ b/qt5/src/poppler-private.cc @@ -8,6 +8,7 @@ * Copyright (C) 2018 Klarälvdalens Datakonsult AB, a KDAB Group company, <[email protected]>. Work sponsored by the LiMux project of the city of Munich * Copyright (C) 2018, 2019 Adam Reichold <[email protected]> * Copyright (C) 2019 Oliver Sander <[email protected]> + * Copyright (C) 2019 João Netto <[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/qt5/src/poppler-private.h b/qt5/src/poppler-private.h index 4bcd263f..de5ec041 100644 --- a/qt5/src/poppler-private.h +++ b/qt5/src/poppler-private.h @@ -14,6 +14,7 @@ * Copyright (C) 2018 Klarälvdalens Datakonsult AB, a KDAB Group company, <[email protected]>. Work sponsored by the LiMux project of the city of Munich * Copyright (C) 2018 Adam Reichold <[email protected]> * Copyright (C) 2019 Oliver Sander <[email protected]> + * Copyright (C) 2019 João Netto <[email protected]> * Inspired on code by * Copyright (C) 2004 by Albert Astals Cid <[email protected]> * Copyright (C) 2004 by Enrico Ros <[email protected]> _______________________________________________ poppler mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/poppler
