SHA256
1
0
forked from pool/texlive

Accepting request 594848 from home:namtrac:branches:Publishing:TeXLive

- Update source-poppler-0.59.1.dif to fix compilation with poppler
  0.63. Dict objects are now uncopyable, make a const reference
  instead.

OBS-URL: https://build.opensuse.org/request/show/594848
OBS-URL: https://build.opensuse.org/package/show/Publishing:TeXLive/texlive?expand=0&rev=284
This commit is contained in:
Dr. Werner Fink 2018-04-12 07:29:30 +00:00 committed by Git OBS Bridge
parent ae7831f716
commit 46b845441e
2 changed files with 9 additions and 2 deletions

View File

@ -200,8 +200,8 @@ Akira
+*/
+// begin modification
+ groupDict = pageDict->lookup("Group");
+ Dict dic1 = page->getGroup();
+ Dict dic2 = groupDict.getDict();
+ const Dict& dic1 = page->getGroup();
+ const Dict& dic2 = groupDict.getDict();
+ // replace dic2 in groupDict with dic1
+ l = dic2.getLength();
+ for (i = 0; i < l; i++) {

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Mon Apr 9 10:57:54 UTC 2018 - idonmez@suse.com
- Update source-poppler-0.59.1.dif to fix compilation with poppler
0.63. Dict objects are now uncopyable, make a const reference
instead.
-------------------------------------------------------------------
Thu Mar 15 08:54:09 UTC 2018 - werner@suse.de