summaryrefslogtreecommitdiff
path: root/xfa/fxbarcode/oned/BC_OnedEAN13Writer.cpp
diff options
context:
space:
mode:
authorthestig <thestig@chromium.org>2016-08-09 12:09:22 -0700
committerCommit bot <commit-bot@chromium.org>2016-08-09 12:09:22 -0700
commitad5ac7584844b03c5ceed082e5f5158a632405cc (patch)
tree1b3fc87f4c991eb7da2879f09623cdb9e205ac95 /xfa/fxbarcode/oned/BC_OnedEAN13Writer.cpp
parente7107f48ddb9309e1664d84ec360ce06ec3201e2 (diff)
downloadpdfium-ad5ac7584844b03c5ceed082e5f5158a632405cc.tar.xz
Fix typos of the word outer.
Review-Url: https://codereview.chromium.org/2226003003
Diffstat (limited to 'xfa/fxbarcode/oned/BC_OnedEAN13Writer.cpp')
-rw-r--r--xfa/fxbarcode/oned/BC_OnedEAN13Writer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/xfa/fxbarcode/oned/BC_OnedEAN13Writer.cpp b/xfa/fxbarcode/oned/BC_OnedEAN13Writer.cpp
index 94cec3e494..f4b0a6fdcb 100644
--- a/xfa/fxbarcode/oned/BC_OnedEAN13Writer.cpp
+++ b/xfa/fxbarcode/oned/BC_OnedEAN13Writer.cpp
@@ -196,7 +196,7 @@ void CBC_OnedEAN13Writer::ShowChars(const CFX_WideStringC& contents,
(FX_FLOAT)(leftPosition + strWidth - 0.5), (FX_FLOAT)m_Height);
matr.Concat(*matrix);
matr.TransformRect(rect);
- FX_RECT re = rect.GetOutterRect();
+ FX_RECT re = rect.GetOuterRect();
device->FillRect(&re, m_backgroundColor);
CFX_FloatRect rect1(
(FX_FLOAT)(leftPosition + 47 * multiple),
@@ -206,7 +206,7 @@ void CBC_OnedEAN13Writer::ShowChars(const CFX_WideStringC& contents,
CFX_Matrix matr1(m_outputHScale, 0.0, 0.0, 1.0, 0.0, 0.0);
matr1.Concat(*matrix);
matr1.TransformRect(rect1);
- re = rect1.GetOutterRect();
+ re = rect1.GetOuterRect();
device->FillRect(&re, m_backgroundColor);
int32_t strWidth1 = multiple * 7;
CFX_Matrix matr2(m_outputHScale, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f);
@@ -214,7 +214,7 @@ void CBC_OnedEAN13Writer::ShowChars(const CFX_WideStringC& contents,
(FX_FLOAT)strWidth1 - 0.5f, (FX_FLOAT)m_Height);
matr2.Concat(*matrix);
matr2.TransformRect(rect2);
- re = rect2.GetOutterRect();
+ re = rect2.GetOuterRect();
device->FillRect(&re, m_backgroundColor);
}
FX_FLOAT blank = 0.0;