Index: samplecode/SampleRectanizer.cpp |
diff --git a/samplecode/SampleRectanizer.cpp b/samplecode/SampleRectanizer.cpp |
index 9d2f6ffc011e20f4f41a892b4bc4a469af73f13b..7bb712c721ade9d18e06323d6df2cea3c5e0ed29 100644 |
--- a/samplecode/SampleRectanizer.cpp |
+++ b/samplecode/SampleRectanizer.cpp |
@@ -51,7 +51,7 @@ public: |
} |
protected: |
- bool onQuery(SkEvent* evt) SK_OVERRIDE { |
+ bool onQuery(SkEvent* evt) override { |
if (SampleCode::TitleQ(*evt)) { |
SampleCode::TitleR(evt, "Rectanizer"); |
return true; |
@@ -77,7 +77,7 @@ protected: |
return this->INHERITED::onQuery(evt); |
} |
- void onDrawContent(SkCanvas* canvas) SK_OVERRIDE { |
+ void onDrawContent(SkCanvas* canvas) override { |
if (fCurRandRect < kNumRandRects) { |
if (fCurRectanizer->addRect((*fCurRects)[fCurRandRect].fWidth, |
(*fCurRects)[fCurRandRect].fHeight, |