extractpdfmark: remove patch

This commit is contained in:
maxice8 2018-12-19 22:29:12 -02:00
parent 9a06a74c77
commit 3667e26192
No known key found for this signature in database
GPG key ID: 543B9D4F4299F06B

View file

@ -1,16 +0,0 @@
poppler-0.72 renamed GooString::getCString() to c_str()
diff --git a/src/poppler-core/destname.cc b/src/poppler-core/destname.cc
index 7177990..200c267 100644
--- src/poppler-core/destname.cc
+++ src/poppler-core/destname.cc
@@ -32,7 +32,7 @@
inline std::string goo_to_string (GooString *goo)
{
- return std::string {goo->getCString (),
+ return std::string {goo->c_str (),
static_cast<std::string::size_type>(goo->getLength ())};
}