summaryrefslogtreecommitdiff
path: root/xfa
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
parente7107f48ddb9309e1664d84ec360ce06ec3201e2 (diff)
downloadpdfium-ad5ac7584844b03c5ceed082e5f5158a632405cc.tar.xz
Fix typos of the word outer.
Review-Url: https://codereview.chromium.org/2226003003
Diffstat (limited to 'xfa')
-rw-r--r--xfa/fxbarcode/oned/BC_OneDimWriter.cpp2
-rw-r--r--xfa/fxbarcode/oned/BC_OnedEAN13Writer.cpp6
-rw-r--r--xfa/fxbarcode/oned/BC_OnedEAN8Writer.cpp4
-rw-r--r--xfa/fxbarcode/oned/BC_OnedUPCAWriter.cpp8
-rw-r--r--xfa/fxfa/app/xfa_ffwidget.cpp2
5 files changed, 11 insertions, 11 deletions
diff --git a/xfa/fxbarcode/oned/BC_OneDimWriter.cpp b/xfa/fxbarcode/oned/BC_OneDimWriter.cpp
index 8ba7d8e755..ea2f3f9f89 100644
--- a/xfa/fxbarcode/oned/BC_OneDimWriter.cpp
+++ b/xfa/fxbarcode/oned/BC_OneDimWriter.cpp
@@ -199,7 +199,7 @@ void CBC_OneDimWriter::ShowDeviceChars(CFX_RenderDevice* device,
rect.right -= 1;
}
matrix->TransformRect(rect);
- FX_RECT re = rect.GetOutterRect();
+ FX_RECT re = rect.GetOuterRect();
device->FillRect(&re, m_backgroundColor);
CFX_Matrix affine_matrix(1.0, 0.0, 0.0, -1.0, (FX_FLOAT)locX,
(FX_FLOAT)(locY + iFontSize));
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;
diff --git a/xfa/fxbarcode/oned/BC_OnedEAN8Writer.cpp b/xfa/fxbarcode/oned/BC_OnedEAN8Writer.cpp
index 75693ff46e..577654bd73 100644
--- a/xfa/fxbarcode/oned/BC_OnedEAN8Writer.cpp
+++ b/xfa/fxbarcode/oned/BC_OnedEAN8Writer.cpp
@@ -197,7 +197,7 @@ void CBC_OnedEAN8Writer::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_Matrix matr1(m_outputHScale, 0.0, 0.0, 1.0, 0.0, 0.0);
CFX_FloatRect rect1(
@@ -207,7 +207,7 @@ void CBC_OnedEAN8Writer::ShowChars(const CFX_WideStringC& contents,
(FX_FLOAT)m_Height);
matr1.Concat(*matrix);
matr1.TransformRect(rect1);
- re = rect1.GetOutterRect();
+ re = rect1.GetOuterRect();
device->FillRect(&re, m_backgroundColor);
}
if (!pOutBitmap)
diff --git a/xfa/fxbarcode/oned/BC_OnedUPCAWriter.cpp b/xfa/fxbarcode/oned/BC_OnedUPCAWriter.cpp
index 158af2cdd7..8ed5971e0e 100644
--- a/xfa/fxbarcode/oned/BC_OnedUPCAWriter.cpp
+++ b/xfa/fxbarcode/oned/BC_OnedUPCAWriter.cpp
@@ -147,7 +147,7 @@ void CBC_OnedUPCAWriter::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_Matrix matr1(m_outputHScale, 0.0, 0.0, 1.0, 0.0, 0.0);
CFX_FloatRect rect1(
@@ -157,7 +157,7 @@ void CBC_OnedUPCAWriter::ShowChars(const CFX_WideStringC& contents,
(FX_FLOAT)m_Height);
matr1.Concat(*matrix);
matr1.TransformRect(rect1);
- re = rect1.GetOutterRect();
+ re = rect1.GetOuterRect();
device->FillRect(&re, m_backgroundColor);
FX_FLOAT strWidth1 = (FX_FLOAT)multiple * 7;
CFX_Matrix matr2(m_outputHScale, 0.0, 0.0, 1.0, 0.0, 0.0);
@@ -165,7 +165,7 @@ void CBC_OnedUPCAWriter::ShowChars(const CFX_WideStringC& contents,
(FX_FLOAT)strWidth1 - 1, (FX_FLOAT)m_Height);
matr2.Concat(*matrix);
matr2.TransformRect(rect2);
- re = rect2.GetOutterRect();
+ re = rect2.GetOuterRect();
device->FillRect(&re, m_backgroundColor);
CFX_Matrix matr3(m_outputHScale, 0.0, 0.0, 1.0, 0.0, 0.0);
CFX_FloatRect rect3(
@@ -175,7 +175,7 @@ void CBC_OnedUPCAWriter::ShowChars(const CFX_WideStringC& contents,
(FX_FLOAT)m_Height);
matr3.Concat(*matrix);
matr3.TransformRect(rect3);
- re = rect3.GetOutterRect();
+ re = rect3.GetOuterRect();
device->FillRect(&re, m_backgroundColor);
}
if (!pOutBitmap)
diff --git a/xfa/fxfa/app/xfa_ffwidget.cpp b/xfa/fxfa/app/xfa_ffwidget.cpp
index 6cea803fa5..f4b6a8aeb9 100644
--- a/xfa/fxfa/app/xfa_ffwidget.cpp
+++ b/xfa/fxfa/app/xfa_ffwidget.cpp
@@ -633,7 +633,7 @@ FX_BOOL CXFA_ImageRenderer::StartDIBSource() {
return FALSE;
}
CFX_FloatRect image_rect_f = m_ImageMatrix.GetUnitRect();
- FX_RECT image_rect = image_rect_f.GetOutterRect();
+ FX_RECT image_rect = image_rect_f.GetOuterRect();
int dest_width = image_rect.Width();
int dest_height = image_rect.Height();
if ((FXSYS_fabs(m_ImageMatrix.b) >= 0.5f || m_ImageMatrix.a == 0) ||