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