summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2019-11-22 18:55:04 +0100
committerAlbert Astals Cid <aacid@kde.org>2019-11-22 18:55:04 +0100
commit8090142cbc9fc2d5dd9b39c22c042cfe5b088fda (patch)
treec6903b771e6793ebfbef5ffe8243f865c3f6d09c
parentc59a2794b68f104fec15bb75af456793bf3c3d96 (diff)
Remove Object::streamLookChar
-rw-r--r--poppler/Object.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/poppler/Object.h b/poppler/Object.h
index c1f4f2e2..439bbff6 100644
--- a/poppler/Object.h
+++ b/poppler/Object.h
@@ -297,7 +297,6 @@ public:
void streamClose();
int streamGetChar() const;
int streamGetChars(int nChars, unsigned char *buffer) const;
- int streamLookChar() const;
char *streamGetLine(char *buf, int size) const;
void streamSetPos(Goffset pos, int dir = 0);
Dict *streamGetDict() const;
@@ -416,9 +415,6 @@ inline int Object::streamGetChar() const
inline int Object::streamGetChars(int nChars, unsigned char *buffer) const
{ OBJECT_TYPE_CHECK(objStream); return stream->doGetChars(nChars, buffer); }
-inline int Object::streamLookChar() const
- { OBJECT_TYPE_CHECK(objStream); return stream->lookChar(); }
-
inline char *Object::streamGetLine(char *buf, int size) const
{ OBJECT_TYPE_CHECK(objStream); return stream->getLine(buf, size); }