summaryrefslogtreecommitdiff
path: root/core/fpdfapi/page/cpdf_tilingpattern.cpp
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2018-10-24 21:55:21 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-10-24 21:55:21 +0000
commitd8a3bc9ce941062fa4dd8cc2d03b16af402adafe (patch)
tree1f87a6c3b4b77738c5cf7ec7a16101b82f731eff /core/fpdfapi/page/cpdf_tilingpattern.cpp
parent9cbc37b4a5bfb3932e5f9a50c552d7b913178337 (diff)
downloadpdfium-d8a3bc9ce941062fa4dd8cc2d03b16af402adafe.tar.xz
Use ASSERT() consistently. Replace assert() usage.
ASSERT() is PDFium's wrapper for cross-platform wrapper for assert(). Change-Id: Ie2a98a8e1de101f93aa9bf667d6f125d11d129cd Reviewed-on: https://pdfium-review.googlesource.com/c/44539 Commit-Queue: Lei Zhang <thestig@chromium.org> Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fpdfapi/page/cpdf_tilingpattern.cpp')
-rw-r--r--core/fpdfapi/page/cpdf_tilingpattern.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fpdfapi/page/cpdf_tilingpattern.cpp b/core/fpdfapi/page/cpdf_tilingpattern.cpp
index 3cbfa07fa4..faa7eb8fe2 100644
--- a/core/fpdfapi/page/cpdf_tilingpattern.cpp
+++ b/core/fpdfapi/page/cpdf_tilingpattern.cpp
@@ -16,7 +16,7 @@ CPDF_TilingPattern::CPDF_TilingPattern(CPDF_Document* pDoc,
CPDF_Object* pPatternObj,
const CFX_Matrix& parentMatrix)
: CPDF_Pattern(pDoc, pPatternObj, parentMatrix) {
- assert(document());
+ ASSERT(document());
m_bColored = pattern_obj()->GetDict()->GetIntegerFor("PaintType") == 1;
SetPatternToFormMatrix();
}