summaryrefslogtreecommitdiff
path: root/Build/source/libs/poppler/poppler-PATCHES/patch-03-Object-functions
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/poppler/poppler-PATCHES/patch-03-Object-functions')
-rw-r--r--Build/source/libs/poppler/poppler-PATCHES/patch-03-Object-functions43
1 files changed, 43 insertions, 0 deletions
diff --git a/Build/source/libs/poppler/poppler-PATCHES/patch-03-Object-functions b/Build/source/libs/poppler/poppler-PATCHES/patch-03-Object-functions
new file mode 100644
index 00000000000..d90fb2ac7be
--- /dev/null
+++ b/Build/source/libs/poppler/poppler-PATCHES/patch-03-Object-functions
@@ -0,0 +1,43 @@
+diff -ur poppler-0.40.0.orig/poppler/Object.h poppler-0.40.0/poppler/Object.h
+--- poppler-0.40.0.orig/poppler/Object.h Mon Nov 16 06:05:22 2015
++++ poppler-0.40.0/poppler/Object.h Thu Jan 14 13:20:32 2016
+@@ -140,7 +140,7 @@
+ Object *initStream(Stream *streamA);
+ Object *initRef(int numA, int genA)
+ { initObj(objRef); ref.num = numA; ref.gen = genA; return this; }
+- Object *initCmd(char *cmdA)
++ Object *initCmd(const char *cmdA)
+ { initObj(objCmd); cmd = copyString(cmdA); return this; }
+ Object *initError()
+ { initObj(objError); return this; }
+@@ -186,7 +186,7 @@
+ GBool isName(const char *nameA)
+ { return type == objName && !strcmp(name, nameA); }
+ GBool isDict(const char *dictType);
+- GBool isStream(char *dictType);
++ GBool isStream(const char *dictType);
+ GBool isCmd(const char *cmdA)
+ { return type == objCmd && !strcmp(cmd, cmdA); }
+
+@@ -233,7 +233,7 @@
+ Object *dictGetValNF(int i, Object *obj);
+
+ // Stream accessors.
+- GBool streamIs(char *dictType);
++ GBool streamIs(const char *dictType);
+ void streamReset();
+ void streamClose();
+ int streamGetChar();
+@@ -337,10 +337,10 @@
+
+ #include "Stream.h"
+
+-inline GBool Object::streamIs(char *dictType)
++inline GBool Object::streamIs(const char *dictType)
+ { OBJECT_TYPE_CHECK(objStream); return stream->getDict()->is(dictType); }
+
+-inline GBool Object::isStream(char *dictType)
++inline GBool Object::isStream(const char *dictType)
+ { return type == objStream && streamIs(dictType); }
+
+ inline void Object::streamReset()