| Index: samplecode/SampleSubpixelTranslate.cpp
|
| diff --git a/samplecode/SampleSubpixelTranslate.cpp b/samplecode/SampleSubpixelTranslate.cpp
|
| index 4652bc37adde15890e281183f3da0bbc2eea869f..4695962c48a3a4b25a430395270faa10e6145685 100644
|
| --- a/samplecode/SampleSubpixelTranslate.cpp
|
| +++ b/samplecode/SampleSubpixelTranslate.cpp
|
| @@ -52,7 +52,7 @@ protected:
|
| SkPoint fCurPos;
|
|
|
| // overrides from SkEventSink
|
| - virtual bool onQuery(SkEvent* evt) SK_OVERRIDE {
|
| + bool onQuery(SkEvent* evt) SK_OVERRIDE {
|
| if (SampleCode::TitleQ(*evt)) {
|
| SampleCode::TitleR(evt, "SubpixelTranslate");
|
| return true;
|
| @@ -60,7 +60,7 @@ protected:
|
| return this->INHERITED::onQuery(evt);
|
| }
|
|
|
| - virtual void onDrawContent(SkCanvas* canvas) SK_OVERRIDE {
|
| + void onDrawContent(SkCanvas* canvas) SK_OVERRIDE {
|
|
|
| static const SkPaint::FilterLevel gLevels[] = {
|
| SkPaint::kNone_FilterLevel,
|
|
|