diff options
Diffstat (limited to 'core/fpdfapi/page/cpdf_pageobject.h')
-rw-r--r-- | core/fpdfapi/page/cpdf_pageobject.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/core/fpdfapi/page/cpdf_pageobject.h b/core/fpdfapi/page/cpdf_pageobject.h index 39e7629541..3fc35aa063 100644 --- a/core/fpdfapi/page/cpdf_pageobject.h +++ b/core/fpdfapi/page/cpdf_pageobject.h @@ -65,10 +65,14 @@ class CPDF_PageObject : public CPDF_GraphicStates { // Get what content stream the object was parsed from in its page. This number // is the index of the content stream in the "Contents" array, or 0 if there // is a single content stream. If the object is newly created, - // kNoContentStream is returned. + // |kNoContentStream| is returned. + // // If the object is spread among more than one content stream, this is the // index of the last stream. int32_t GetContentStream() const { return m_ContentStream; } + void SetContentStream(int32_t new_content_stream) { + m_ContentStream = new_content_stream; + } float m_Left; float m_Right; |