diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-12-10 14:49:23 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-12-10 14:49:23 -0800 |
commit | f32c969bce6743fca1e7ff796b54a1692d26d7f0 (patch) | |
tree | f35f0ae0c8505394b2f195f4ea849249668af170 /core/include/fpdfapi/fpdf_objects.h | |
parent | 94edf0c37d1ee6a03697375b9e227071ff2ee69d (diff) | |
download | pdfium-f32c969bce6743fca1e7ff796b54a1692d26d7f0.tar.xz |
Remove CFX_AffineMatrix/CPDF_Matrix
These are synonyms for CFX_Matrix.
Nothing but sed and manual deletion of 2 #defines in
fpdf_parser.h and fx_coordinates.h
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1513363002 .
Diffstat (limited to 'core/include/fpdfapi/fpdf_objects.h')
-rw-r--r-- | core/include/fpdfapi/fpdf_objects.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/include/fpdfapi/fpdf_objects.h b/core/include/fpdfapi/fpdf_objects.h index 532ede2a08..143e7d71c2 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); |