aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ports
diff options
context:
space:
mode:
authorGravatar bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-05-09 14:11:19 +0000
committerGravatar bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-05-09 14:11:19 +0000
commit1c261116d9e980534c21faec8ea440669026942e (patch)
tree79e5199508c3a36a5c1b5d30ddd58f1bd9cbdbc7 /src/ports
parent4d868b02851c6e58f4448f4ca24e198451ed6ccd (diff)
Fix typo in SkFontHost_win.cpp in comment.
We want the 'size', not the 'side'. git-svn-id: http://skia.googlecode.com/svn/trunk@14667 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/ports')
-rwxr-xr-xsrc/ports/SkFontHost_win.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ports/SkFontHost_win.cpp b/src/ports/SkFontHost_win.cpp
index 47a29c0024..c51a56bf3b 100755
--- a/src/ports/SkFontHost_win.cpp
+++ b/src/ports/SkFontHost_win.cpp
@@ -646,7 +646,7 @@ SkScalerContext_GDI::SkScalerContext_GDI(SkTypeface* rawTypeface,
GA.preConcat(A);
// realTextSize is the actual device size we want (as opposed to the size the user requested).
- // gdiTextSide is the size we request from GDI.
+ // gdiTextSize is the size we request from GDI.
// If the scale is negative, this means the matrix will do the flip anyway.
SkScalar realTextSize = SkScalarAbs(GA.get(SkMatrix::kMScaleY));
SkScalar gdiTextSize = SkScalarRoundToScalar(realTextSize);