summaryrefslogtreecommitdiff
path: root/poppler
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2019-11-22 21:49:01 +0100
committerAlbert Astals Cid <aacid@kde.org>2019-11-22 21:49:01 +0100
commitdc85457466acf5f9ce87988c812d47254ac74ad0 (patch)
tree10d0530425c19d8c2584ab3c2ef29b75e2ae1fce /poppler
parent8090142cbc9fc2d5dd9b39c22c042cfe5b088fda (diff)
Remove Object::streamGetLine
Diffstat (limited to 'poppler')
-rw-r--r--poppler/Object.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/poppler/Object.h b/poppler/Object.h
index 439bbff6..5f129c3d 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;
- char *streamGetLine(char *buf, int size) const;
void streamSetPos(Goffset pos, int dir = 0);
Dict *streamGetDict() const;
@@ -415,9 +414,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 char *Object::streamGetLine(char *buf, int size) const
- { OBJECT_TYPE_CHECK(objStream); return stream->getLine(buf, size); }
-
inline Dict *Object::streamGetDict() const
{ OBJECT_TYPE_CHECK(objStream); return stream->getDict(); }