| Index: core/fpdfapi/fpdf_page/cpdf_allstates.cpp
|
| diff --git a/core/fpdfapi/fpdf_page/cpdf_allstates.cpp b/core/fpdfapi/fpdf_page/cpdf_allstates.cpp
|
| index 5d02381d2e7fabade18ede34c629632c48ef8185..159de584eec24b37f327aa96ace2011fe2a3b3b7 100644
|
| --- a/core/fpdfapi/fpdf_page/cpdf_allstates.cpp
|
| +++ b/core/fpdfapi/fpdf_page/cpdf_allstates.cpp
|
| @@ -47,7 +47,7 @@ void CPDF_AllStates::SetLineDash(CPDF_Array* pArray,
|
| CFX_GraphStateData* pData = m_GraphState.GetModify();
|
| pData->m_DashPhase = phase * scale;
|
| pData->SetDashCount(pArray->GetCount());
|
| - for (FX_DWORD i = 0; i < pArray->GetCount(); i++) {
|
| + for (uint32_t i = 0; i < pArray->GetCount(); i++) {
|
| pData->m_DashArray[i] = pArray->GetNumberAt(i) * scale;
|
| }
|
| }
|
| @@ -62,7 +62,7 @@ void CPDF_AllStates::ProcessExtGS(CPDF_Dictionary* pGS,
|
| if (!pObject)
|
| continue;
|
|
|
| - FX_DWORD key = key_str.GetID();
|
| + uint32_t key = key_str.GetID();
|
| switch (key) {
|
| case FXBSTR_ID('L', 'W', 0, 0):
|
| m_GraphState.GetModify()->m_LineWidth = pObject->GetNumber();
|
|
|