summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorThorsten Schöning <6223655+ams-tschoening@users.noreply.github.com>2019-07-03 19:34:02 +0200
committerJay Berkenbilt <ejb@ql.org>2019-07-04 02:08:47 +0200
commit8f06da75343a5e970ff7a6f275c319172e6292d0 (patch)
tree13782f4c3cdc2966cfab5e4dbd064c3ff52dbaba /ChangeLog
parent4db1de97cea9dfab3f3abe43766053ba0d594610 (diff)
downloadqpdf-8f06da75343a5e970ff7a6f275c319172e6292d0.tar.zst
Change list to vector for outline helpers (fixes #297)
This change works around STL problems with Embarcadero C++ Builder version 10.2, but std::vector is more common than std::list in qpdf, and this is a relatively new API, so an API change is tolerable. Thanks to Thorsten Schöning <6223655+ams-tschoening@users.noreply.github.com> for the fix.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 63f0233a..5de76343 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2019-07-03 Jay Berkenbilt <ejb@ql.org>
+
+ * Non-compatible API change: change
+ QPDFOutlineDocumentHelper::getTopLevelOutlines and
+ QPDFOutlineObjectHelper::getKids to return a std::vector instead
+ of a std::list of QPDFOutlineObjectHelper objects. This is to work
+ around bugs with some compilers' STL implementations that are
+ choking with list here. There's no deep reason for these to be
+ lists instead of vectors. Fixes #297.
+
2019-06-22 Jay Berkenbilt <ejb@ql.org>
* Handle encrypted files with missing or invalid /Length entries