aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/strokerects.cpp
diff options
context:
space:
mode:
authorGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-12-09 09:14:59 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-12-09 09:14:59 +0000
commitbc451d2823e5b4a14b7d4382a9bd2b5f15c2325e (patch)
tree4f2e631b1008f49c20b847f7aa64237b1c33de1a /gm/strokerects.cpp
parent56710d1905e2575ea91da400f0dd6b3fc6c346c3 (diff)
Just a typo. Rename StrokeRect to StrokeRects in strokerects.cpp, making it different from the class name in strokerect.cpp for debugging.
R=bungeman@google.com, reed@google.com Author: yunchao.he@intel.com Review URL: https://codereview.chromium.org/99573004 git-svn-id: http://skia.googlecode.com/svn/trunk@12557 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gm/strokerects.cpp')
-rw-r--r--gm/strokerects.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/gm/strokerects.cpp b/gm/strokerects.cpp
index 88641da695..6abb89f2d8 100644
--- a/gm/strokerects.cpp
+++ b/gm/strokerects.cpp
@@ -20,9 +20,9 @@ namespace skiagm {
static const SkScalar SW = SkIntToScalar(W);
static const SkScalar SH = SkIntToScalar(H);
-class StrokeRectGM : public GM {
+class StrokeRectsGM : public GM {
public:
- StrokeRectGM() {}
+ StrokeRectsGM() {}
protected:
virtual SkString onShortName() {
@@ -77,7 +77,7 @@ private:
//////////////////////////////////////////////////////////////////////////////
-static GM* MyFactory(void*) { return new StrokeRectGM; }
+static GM* MyFactory(void*) { return new StrokeRectsGM; }
static GMRegistry reg(MyFactory);
}