summaryrefslogtreecommitdiff
path: root/utils/pdfinfo.cc
diff options
context:
space:
mode:
authorAdam Reichold <adam.reichold@t-online.de>2018-09-15 09:54:01 +0200
committerAlbert Astals Cid <aacid@kde.org>2018-09-17 22:11:02 +0000
commit7e9b6f1dba716e7adba1ed2ecd765b207def9747 (patch)
tree89e0ce92ac57970dc3b988b16e01e87e7bae761c /utils/pdfinfo.cc
parent94527d5a61eb3402b49436b978bad69f71884051 (diff)
Fix TODO in OCGs by creating a look-up table from Ref to OptionalContentGroup (and make Ref a regular type to do so).
Diffstat (limited to 'utils/pdfinfo.cc')
-rw-r--r--utils/pdfinfo.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/pdfinfo.cc b/utils/pdfinfo.cc
index 91423ebd..41708bd7 100644
--- a/utils/pdfinfo.cc
+++ b/utils/pdfinfo.cc
@@ -372,7 +372,7 @@ static void printLinkDest(LinkDest *dest) {
}
static void printDestinations(PDFDoc *doc, UnicodeMap *uMap) {
- std::map<Ref,std::map<GooString*,LinkDest*,GooStringCompare>, RefCompare > map;
+ std::map<Ref,std::map<GooString*,LinkDest*,GooStringCompare> > map;
int numDests = doc->getCatalog()->numDestNameTree();
for (int i = 0; i < numDests; i++) {