aboutsummaryrefslogtreecommitdiffhomepage
path: root/debugger
diff options
context:
space:
mode:
authorGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-01-11 02:01:25 +0000
committerGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-01-11 02:01:25 +0000
commitf49b28745f7df4c909625b714f53c653b0972e6a (patch)
treef519e22e0897fcfe7ae6117d5462f17f0fc0fd38 /debugger
parenta89e9da23bc5f432841f125ad4aa6a976a929095 (diff)
Sanitizing source files in Skia_Periodic_House_Keeping
git-svn-id: http://skia.googlecode.com/svn/trunk@7127 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'debugger')
-rw-r--r--debugger/SkObjectParser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/debugger/SkObjectParser.cpp b/debugger/SkObjectParser.cpp
index 6e94153922..6b99f0f97c 100644
--- a/debugger/SkObjectParser.cpp
+++ b/debugger/SkObjectParser.cpp
@@ -225,11 +225,11 @@ SkString* SkObjectParser::PaintToString(const SkPaint& paint) {
add_flag_to_string(mPaint, paint.isSubpixelText(), "SubpixelText", &needSeparator);
add_flag_to_string(mPaint, paint.isDevKernText(), "DevKernText", &needSeparator);
add_flag_to_string(mPaint, paint.isLCDRenderText(), "LCDRenderText", &needSeparator);
- add_flag_to_string(mPaint, paint.isEmbeddedBitmapText(),
+ add_flag_to_string(mPaint, paint.isEmbeddedBitmapText(),
"EmbeddedBitmapText", &needSeparator);
add_flag_to_string(mPaint, paint.isAutohinted(), "Autohinted", &needSeparator);
add_flag_to_string(mPaint, paint.isVerticalText(), "VerticalText", &needSeparator);
- add_flag_to_string(mPaint, SkToBool(paint.getFlags() & SkPaint::kGenA8FromLCD_Flag),
+ add_flag_to_string(mPaint, SkToBool(paint.getFlags() & SkPaint::kGenA8FromLCD_Flag),
"GenA8FromLCD", &needSeparator);
} else {
mPaint->append("None");