| Index: samplecode/SampleChart.cpp
|
| diff --git a/samplecode/SampleChart.cpp b/samplecode/SampleChart.cpp
|
| index ec5448cc39e59451d59fa913bc79375c7b518ee4..4c128a90d75aeea0965fc688548bf299b0c2f59e 100644
|
| --- a/samplecode/SampleChart.cpp
|
| +++ b/samplecode/SampleChart.cpp
|
| @@ -88,7 +88,7 @@ public:
|
| }
|
|
|
| protected:
|
| - bool onQuery(SkEvent* evt) SK_OVERRIDE {
|
| + bool onQuery(SkEvent* evt) override {
|
| if (SampleCode::TitleQ(*evt)) {
|
| SampleCode::TitleR(evt, "Chart");
|
| return true;
|
| @@ -96,7 +96,7 @@ protected:
|
| return this->INHERITED::onQuery(evt);
|
| }
|
|
|
| - void onDrawContent(SkCanvas* canvas) SK_OVERRIDE {
|
| + void onDrawContent(SkCanvas* canvas) override {
|
| bool sizeChanged = false;
|
| if (canvas->getDeviceSize() != fSize) {
|
| fSize = canvas->getDeviceSize();
|
|
|