Index: samplecode/SampleRegion.cpp |
diff --git a/samplecode/SampleRegion.cpp b/samplecode/SampleRegion.cpp |
index 54858de7a13eb68a2213b4e8cc61bd1c54ffe5e1..70105d2a6dc33837a4809bcec7f1ed416983a5d2 100644 |
--- a/samplecode/SampleRegion.cpp |
+++ b/samplecode/SampleRegion.cpp |
@@ -219,7 +219,7 @@ public: |
protected: |
// overrides from SkEventSink |
- virtual bool onQuery(SkEvent* evt) { |
+ virtual bool onQuery(SkEvent* evt) SK_OVERRIDE { |
if (SampleCode::TitleQ(*evt)) { |
SampleCode::TitleR(evt, "Regions"); |
return true; |
@@ -321,7 +321,7 @@ protected: |
canvas->drawPath(path, paint); |
} |
- virtual void onDrawContent(SkCanvas* canvas) { |
+ virtual void onDrawContent(SkCanvas* canvas) SK_OVERRIDE { |
if (false) { // avoid bit rot, suppress warning |
test_strokerect(canvas); |
return; |
@@ -399,7 +399,7 @@ protected: |
SkScalarRoundToInt(y)) ? new Click(this) : NULL; |
} |
- virtual bool onClick(Click* click) { |
+ virtual bool onClick(Click* click) SK_OVERRIDE { |
fRect.offset(click->fICurr.fX - click->fIPrev.fX, |
click->fICurr.fY - click->fIPrev.fY); |
this->inval(NULL); |