aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDF_Stream.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/QPDF_Stream.cc')
-rw-r--r--libqpdf/QPDF_Stream.cc16
1 files changed, 5 insertions, 11 deletions
diff --git a/libqpdf/QPDF_Stream.cc b/libqpdf/QPDF_Stream.cc
index c3e5f747..edb4a739 100644
--- a/libqpdf/QPDF_Stream.cc
+++ b/libqpdf/QPDF_Stream.cc
@@ -127,7 +127,11 @@ QPDF_Stream::QPDF_Stream(
throw std::logic_error("stream object instantiated with non-dictionary "
"object for dictionary");
}
- setStreamDescription();
+ setDescription(
+ this->qpdf,
+ this->qpdf->getFilename() + ", stream object " +
+ QUtil::int_to_string(this->objid) + " " +
+ QUtil::int_to_string(this->generation));
}
void
@@ -297,16 +301,6 @@ QPDF_Stream::setDescription(QPDF* qpdf, std::string const& description)
}
void
-QPDF_Stream::setStreamDescription()
-{
- setDescription(
- this->qpdf,
- this->qpdf->getFilename() + ", stream object " +
- QUtil::int_to_string(this->objid) + " " +
- QUtil::int_to_string(this->generation));
-}
-
-void
QPDF_Stream::setDictDescription()
{
QPDF* qpdf = 0;