summaryrefslogtreecommitdiff
path: root/core/fpdfapi/page/cpdf_pathobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/fpdfapi/page/cpdf_pathobject.h')
-rw-r--r--core/fpdfapi/page/cpdf_pathobject.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/core/fpdfapi/page/cpdf_pathobject.h b/core/fpdfapi/page/cpdf_pathobject.h
index dd4cd55a79..9067147410 100644
--- a/core/fpdfapi/page/cpdf_pathobject.h
+++ b/core/fpdfapi/page/cpdf_pathobject.h
@@ -27,14 +27,17 @@ class CPDF_PathObject final : public CPDF_PageObject {
void CalcBoundingBox();
+ bool stroke() const { return m_bStroke; }
+ void set_stroke(bool stroke) { m_bStroke = stroke; }
+
const CFX_Matrix& matrix() const { return m_Matrix; }
void set_matrix(const CFX_Matrix& matrix) { m_Matrix = matrix; }
CPDF_Path m_Path;
int m_FillType = 0;
- bool m_bStroke = false;
private:
+ bool m_bStroke = false;
CFX_Matrix m_Matrix;
};