| Index: core/include/fpdfapi/fpdf_objects.h
|
| diff --git a/core/include/fpdfapi/fpdf_objects.h b/core/include/fpdfapi/fpdf_objects.h
|
| index 532ede2a08a222d9af7812f3d8cb32390590140f..143e7d71c27ae9e0d0ec48cb817c9ffee348b61b 100644
|
| --- a/core/include/fpdfapi/fpdf_objects.h
|
| +++ b/core/include/fpdfapi/fpdf_objects.h
|
| @@ -295,7 +295,7 @@ class CPDF_Array : public CPDF_Object {
|
|
|
| CPDF_Object* GetElementValue(FX_DWORD index) const;
|
|
|
| - CFX_AffineMatrix GetMatrix();
|
| + CFX_Matrix GetMatrix();
|
|
|
| CFX_FloatRect GetRect();
|
|
|
| @@ -400,7 +400,7 @@ class CPDF_Dictionary : public CPDF_Object {
|
|
|
| CFX_FloatRect GetRect(const CFX_ByteStringC& key) const;
|
|
|
| - CFX_AffineMatrix GetMatrix(const CFX_ByteStringC& key) const;
|
| + CFX_Matrix GetMatrix(const CFX_ByteStringC& key) const;
|
|
|
| FX_FLOAT GetFloat(const CFX_ByteStringC& key) const { return GetNumber(key); }
|
|
|
| @@ -436,7 +436,7 @@ class CPDF_Dictionary : public CPDF_Object {
|
|
|
| void SetAtRect(const CFX_ByteStringC& key, const CFX_FloatRect& rect);
|
|
|
| - void SetAtMatrix(const CFX_ByteStringC& key, const CFX_AffineMatrix& matrix);
|
| + void SetAtMatrix(const CFX_ByteStringC& key, const CFX_Matrix& matrix);
|
|
|
| void SetAtBoolean(const CFX_ByteStringC& key, FX_BOOL bValue);
|
|
|
|
|