From ad5ac7584844b03c5ceed082e5f5158a632405cc Mon Sep 17 00:00:00 2001 From: thestig Date: Tue, 9 Aug 2016 12:09:22 -0700 Subject: Fix typos of the word outer. Review-Url: https://codereview.chromium.org/2226003003 --- core/fxge/ge/fx_ge_device.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/fxge/ge') diff --git a/core/fxge/ge/fx_ge_device.cpp b/core/fxge/ge/fx_ge_device.cpp index 7cf11e7a1f..1b4d9c8144 100644 --- a/core/fxge/ge/fx_ge_device.cpp +++ b/core/fxge/ge/fx_ge_device.cpp @@ -169,7 +169,7 @@ FX_BOOL CFX_RenderDevice::DrawPathWithBlend( CFX_FloatRect rect_f; if (!(fill_mode & FXFILL_RECT_AA) && pPathData->IsRect(pObject2Device, &rect_f)) { - FX_RECT rect_i = rect_f.GetOutterRect(); + FX_RECT rect_i = rect_f.GetOuterRect(); // Depending on the top/bottom, left/right values of the rect it's // possible to overflow the Width() and Height() calculations. Check that @@ -276,7 +276,7 @@ FX_BOOL CFX_RenderDevice::DrawFillStrokePath( CFX_Matrix ctm = GetCTM(); FX_FLOAT fScaleX = FXSYS_fabs(ctm.a); FX_FLOAT fScaleY = FXSYS_fabs(ctm.d); - FX_RECT rect = bbox.GetOutterRect(); + FX_RECT rect = bbox.GetOuterRect(); CFX_DIBitmap bitmap, Backdrop; if (!CreateCompatibleBitmap(&bitmap, FXSYS_round(rect.Width() * fScaleX), FXSYS_round(rect.Height() * fScaleY))) { -- cgit v1.2.3