summaryrefslogtreecommitdiff
path: root/converters/pdf2djvu/files/patch-pdf-unicode.cc
diff options
context:
space:
mode:
authorTobias C. Berner <tcberner@FreeBSD.org>2020-03-21 12:51:29 +0000
committerTobias C. Berner <tcberner@FreeBSD.org>2020-03-21 12:51:29 +0000
commitcc06b3172ecde3ebfda3f6b5cd7fa97db9f386bc (patch)
tree0524d2248f606cdb0e0cef1cfe140afd162d4546 /converters/pdf2djvu/files/patch-pdf-unicode.cc
parentUpdate to the snapshot on 2020-03-03. (diff)
converters/pdf2djvu: update to 0.9.17
- Preparation for Poppler upgrade to 0.86.1 PR: 244822 Approved by: Samy Mahmoudi <samy.mahmoudi@gmail.com> (maintainer)
Diffstat (limited to 'converters/pdf2djvu/files/patch-pdf-unicode.cc')
-rw-r--r--converters/pdf2djvu/files/patch-pdf-unicode.cc25
1 files changed, 0 insertions, 25 deletions
diff --git a/converters/pdf2djvu/files/patch-pdf-unicode.cc b/converters/pdf2djvu/files/patch-pdf-unicode.cc
deleted file mode 100644
index f02c7ada514f..000000000000
--- a/converters/pdf2djvu/files/patch-pdf-unicode.cc
+++ /dev/null
@@ -1,25 +0,0 @@
---- pdf-unicode.cc.orig 2019-10-27 19:19:18.837645000 +0000
-+++ pdf-unicode.cc 2019-10-27 19:20:31.405700000 +0000
-@@ -125,11 +125,11 @@
- * ===================
- */
-
--pdf::FullNFKC::FullNFKC(Unicode *unistr, int length)
-+pdf::FullNFKC::FullNFKC(const Unicode *unistr, int length)
- : data(nullptr), length_(0)
- {
- assert(length >= 0);
-- this->data = unicodeNormalizeNFKC(unistr, length, &this->length_, nullptr);
-+ this->data = unicodeNormalizeNFKC(const_cast<Unicode*>(unistr), length, &this->length_, nullptr);
- }
-
- pdf::FullNFKC::~FullNFKC()
-@@ -141,7 +141,7 @@
- * ======================
- */
-
--pdf::MinimalNFKC::MinimalNFKC(Unicode *unistr, int length)
-+pdf::MinimalNFKC::MinimalNFKC(const Unicode *unistr, int length)
- {
- this->string.append(unistr, length);
- }