summaryrefslogtreecommitdiff
path: root/core/fpdfapi/page/cpdf_shadingobject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/fpdfapi/page/cpdf_shadingobject.cpp')
-rw-r--r--core/fpdfapi/page/cpdf_shadingobject.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/fpdfapi/page/cpdf_shadingobject.cpp b/core/fpdfapi/page/cpdf_shadingobject.cpp
index 928b0af47e..5454380cae 100644
--- a/core/fpdfapi/page/cpdf_shadingobject.cpp
+++ b/core/fpdfapi/page/cpdf_shadingobject.cpp
@@ -19,11 +19,11 @@ CPDF_PageObject::Type CPDF_ShadingObject::GetType() const {
}
void CPDF_ShadingObject::Transform(const CFX_Matrix& matrix) {
- if (m_ClipPath)
+ if (m_ClipPath.HasRef())
m_ClipPath.Transform(matrix);
m_Matrix.Concat(matrix);
- if (m_ClipPath) {
+ if (m_ClipPath.HasRef()) {
CalcBoundingBox();
} else {
matrix.TransformRect(m_Left, m_Right, m_Top, m_Bottom);
@@ -43,7 +43,7 @@ const CPDF_ShadingObject* CPDF_ShadingObject::AsShading() const {
}
void CPDF_ShadingObject::CalcBoundingBox() {
- if (!m_ClipPath)
+ if (!m_ClipPath.HasRef())
return;
CFX_FloatRect rect = m_ClipPath.GetClipBox();
m_Left = rect.left;