Index: samplecode/SamplePatch.cpp |
diff --git a/samplecode/SamplePatch.cpp b/samplecode/SamplePatch.cpp |
index 478d822bee604813e00667a239db9117f1618fe8..ac500bf82893cb5263e2747ceb7d249b5e4db312 100644 |
--- a/samplecode/SamplePatch.cpp |
+++ b/samplecode/SamplePatch.cpp |
@@ -319,7 +319,7 @@ protected: |
drawpatches(canvas, paint, nu, nv, &patch); |
} |
- bool onAnimate(const SkAnimTimer& timer) SK_OVERRIDE { |
+ bool onAnimate(const SkAnimTimer& timer) override { |
fAngle = timer.scaled(60, 360); |
return true; |
} |
@@ -335,7 +335,7 @@ protected: |
} |
virtual SkView::Click* onFindClickHandler(SkScalar x, SkScalar y, |
- unsigned modi) SK_OVERRIDE { |
+ unsigned modi) override { |
x -= DX; |
y -= DY; |
for (size_t i = 0; i < SK_ARRAY_COUNT(fPts); i++) { |