diff options
author | Tom Sepez <tsepez@chromium.org> | 2016-03-01 11:34:03 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2016-03-01 11:34:03 -0800 |
commit | 50dfc4a7068e8e08105f7b9a3945136e7246e677 (patch) | |
tree | a292ef9ae17bfabcb20c94505320dc6c5f6e6258 /xfa/src/fgas/include | |
parent | 23835e3eadc276e4235cbb0a56c8e19ebf7a58f9 (diff) | |
download | pdfium-50dfc4a7068e8e08105f7b9a3945136e7246e677.tar.xz |
Replace FX_LPCRECT typedef with underlying types
Helps with transparency. Also remove default args and
use override consistently in the affected methods.
R=dsinclair@chromium.org
Review URL: https://codereview.chromium.org/1751093002 .
Diffstat (limited to 'xfa/src/fgas/include')
-rw-r--r-- | xfa/src/fgas/include/fx_rbk.h | 2 | ||||
-rw-r--r-- | xfa/src/fgas/include/fx_tbk.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/xfa/src/fgas/include/fx_rbk.h b/xfa/src/fgas/include/fx_rbk.h index 043361b0a3..ef76ab6243 100644 --- a/xfa/src/fgas/include/fx_rbk.h +++ b/xfa/src/fgas/include/fx_rbk.h @@ -89,7 +89,7 @@ struct FX_RTFTEXTOBJ { FX_DWORD dwLayoutStyles; int32_t iCharRotation; int32_t iBidiLevel; - FX_LPCRECTF pRect; + const CFX_RectF* pRect; FX_WCHAR wLineBreakChar; int32_t iHorizontalScale; int32_t iVerticalScale; diff --git a/xfa/src/fgas/include/fx_tbk.h b/xfa/src/fgas/include/fx_tbk.h index 073228883d..aa207a568f 100644 --- a/xfa/src/fgas/include/fx_tbk.h +++ b/xfa/src/fgas/include/fx_tbk.h @@ -109,7 +109,7 @@ struct FX_TXTRUN { int32_t iVerticalScale; int32_t iCharRotation; FX_DWORD dwCharStyles; - FX_LPCRECTF pRect; + const CFX_RectF* pRect; FX_WCHAR wLineBreakChar; FX_BOOL bSkipSpace; }; |