aboutsummaryrefslogtreecommitdiffhomepage
path: root/samplecode/SampleStrokeRect.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'samplecode/SampleStrokeRect.cpp')
-rw-r--r--samplecode/SampleStrokeRect.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/samplecode/SampleStrokeRect.cpp b/samplecode/SampleStrokeRect.cpp
index e9d3c2eaad..edf922805f 100644
--- a/samplecode/SampleStrokeRect.cpp
+++ b/samplecode/SampleStrokeRect.cpp
@@ -14,7 +14,7 @@
class StrokeRectSample : public SampleView {
public:
StrokeRectSample() {}
-
+
protected:
// overrides from SkEventSink
virtual bool onQuery(SkEvent* evt) {
@@ -24,7 +24,7 @@ protected:
}
return this->INHERITED::onQuery(evt);
}
-
+
virtual void onDrawContent(SkCanvas* canvas) {
SkPaint paint;
paint.setAntiAlias(true);
@@ -64,7 +64,7 @@ protected:
canvas->translate(SkIntToScalar(150), 0);
}
}
-
+
private:
typedef SampleView INHERITED;
};