| Index: fpdfsdk/src/pdfwindow/PWL_Icon.cpp
|
| diff --git a/fpdfsdk/src/pdfwindow/PWL_Icon.cpp b/fpdfsdk/src/pdfwindow/PWL_Icon.cpp
|
| index 1bfa1a6d3a05e654d0c0346545eece4cf5515b68..56c22d1bbd5ba4d92d9e63c26e1e48ba0fe3df27 100644
|
| --- a/fpdfsdk/src/pdfwindow/PWL_Icon.cpp
|
| +++ b/fpdfsdk/src/pdfwindow/PWL_Icon.cpp
|
| @@ -16,7 +16,7 @@ CFX_ByteString CPWL_Image::GetImageAppStream() {
|
| CFX_ByteTextBuf sAppStream;
|
|
|
| CFX_ByteString sAlias = GetImageAlias();
|
| - CFX_FloatRect rcPlate = GetClientRect();
|
| + CPDF_Rect rcPlate = GetClientRect();
|
| CFX_Matrix mt;
|
| mt.SetReverse(GetImageMatrix());
|
|
|
| @@ -60,7 +60,7 @@ void CPWL_Image::GetImageSize(FX_FLOAT& fWidth, FX_FLOAT& fHeight) {
|
|
|
| if (m_pPDFStream) {
|
| if (CPDF_Dictionary* pDict = m_pPDFStream->GetDict()) {
|
| - CFX_FloatRect rect = pDict->GetRectBy("BBox");
|
| + CPDF_Rect rect = pDict->GetRectBy("BBox");
|
|
|
| fWidth = rect.right - rect.left;
|
| fHeight = rect.top - rect.bottom;
|
| @@ -157,7 +157,7 @@ void CPWL_Icon::GetScale(FX_FLOAT& fHScale, FX_FLOAT& fVScale) {
|
| FX_FLOAT fImageWidth, fImageHeight;
|
| FX_FLOAT fPlateWidth, fPlateHeight;
|
|
|
| - CFX_FloatRect rcPlate = GetClientRect();
|
| + CPDF_Rect rcPlate = GetClientRect();
|
| fPlateWidth = rcPlate.right - rcPlate.left;
|
| fPlateHeight = rcPlate.top - rcPlate.bottom;
|
|
|
| @@ -213,7 +213,7 @@ void CPWL_Icon::GetImageOffset(FX_FLOAT& x, FX_FLOAT& y) {
|
| FX_FLOAT fImageFactHeight = fImageHeight * fVScale;
|
|
|
| FX_FLOAT fPlateWidth, fPlateHeight;
|
| - CFX_FloatRect rcPlate = GetClientRect();
|
| + CPDF_Rect rcPlate = GetClientRect();
|
| fPlateWidth = rcPlate.right - rcPlate.left;
|
| fPlateHeight = rcPlate.top - rcPlate.bottom;
|
|
|
|
|