| Index: fpdfsdk/src/pdfwindow/PWL_Icon.cpp | 
| diff --git a/fpdfsdk/src/pdfwindow/PWL_Icon.cpp b/fpdfsdk/src/pdfwindow/PWL_Icon.cpp | 
| index 166b4e7ba1b94b6d78ae4a6db4a8dcef62093f1e..61ad1f69132691a47b11da8ddc0ad73549fcecd5 100644 | 
| --- a/fpdfsdk/src/pdfwindow/PWL_Icon.cpp | 
| +++ b/fpdfsdk/src/pdfwindow/PWL_Icon.cpp | 
| @@ -21,7 +21,7 @@ CFX_ByteString CPWL_Image::GetImageAppStream() { | 
|  | 
| CFX_ByteString sAlias = GetImageAlias(); | 
| CPDF_Rect rcPlate = GetClientRect(); | 
| -  CPDF_Matrix mt; | 
| +  CFX_Matrix mt; | 
| mt.SetReverse(GetImageMatrix()); | 
|  | 
| FX_FLOAT fHScale = 1.0f; | 
| @@ -72,14 +72,14 @@ void CPWL_Image::GetImageSize(FX_FLOAT& fWidth, FX_FLOAT& fHeight) { | 
| } | 
| } | 
|  | 
| -CPDF_Matrix CPWL_Image::GetImageMatrix() { | 
| +CFX_Matrix CPWL_Image::GetImageMatrix() { | 
| if (m_pPDFStream) { | 
| if (CPDF_Dictionary* pDict = m_pPDFStream->GetDict()) { | 
| return pDict->GetMatrix("Matrix"); | 
| } | 
| } | 
|  | 
| -  return CPDF_Matrix(); | 
| +  return CFX_Matrix(); | 
| } | 
|  | 
| CFX_ByteString CPWL_Image::GetImageAlias() { | 
|  |