diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog index 155fd5398b7c127d94baafb193a4e563a461ac67..5c4e298fdebfaaf8a5c6a7627b4f984ece016445 100644 --- a/WebCore/ChangeLog +++ b/WebCore/ChangeLog @@ -1,3 +1,15 @@ +2009-08-12 Shinichiro Hamaji + + Reviewed by Dan Bernstein. + + fix a typo in platform/graphics/skia/PlatformContextSkia.cpp + https://bugs.webkit.org/show_bug.cgi?id=28172 + + No new tests because it's a just typo fix. + + * platform/graphics/skia/PlatformContextSkia.cpp: + (PlatformContextSkia::setupPaintCommon): + 2009-08-12 Michelangelo De Simone Reviewed by Darin Adler. diff --git a/WebCore/platform/graphics/skia/PlatformContextSkia.cpp b/WebCore/platform/graphics/skia/PlatformContextSkia.cpp index e0a292cfb7055d9c6f03e5d4b56ce3aeaed58680..bf6bae242d54a219b63b9403712ac67ff0ee6df2 100644 --- a/WebCore/platform/graphics/skia/PlatformContextSkia.cpp +++ b/WebCore/platform/graphics/skia/PlatformContextSkia.cpp @@ -295,7 +295,7 @@ void PlatformContextSkia::drawRect(SkRect rect) void PlatformContextSkia::setupPaintCommon(SkPaint* paint) const { -#ifdef SK_DEBUGx +#ifdef SK_DEBUG { SkPaint defaultPaint; SkASSERT(*paint == defaultPaint);