aboutsummaryrefslogtreecommitdiff
path: root/samplecode/SampleBox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'samplecode/SampleBox.cpp')
-rw-r--r--samplecode/SampleBox.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/samplecode/SampleBox.cpp b/samplecode/SampleBox.cpp
index 2301a91176..19ff6ca671 100644
--- a/samplecode/SampleBox.cpp
+++ b/samplecode/SampleBox.cpp
@@ -11,10 +11,10 @@
class SimpleView : public SampleView {
public:
- SimpleView() {
+ SimpleView() {
this->setBGColor(0xFFDDDDDD);
- }
-
+ }
+
protected:
// overrides from SkEventSink
virtual bool onQuery(SkEvent* evt) {
@@ -24,14 +24,14 @@ protected:
}
return this->INHERITED::onQuery(evt);
}
-
+
virtual void onDrawContent(SkCanvas* canvas) {
SkPaint paint;
paint.setAntiAlias(true);
paint.setStyle(SkPaint::kStroke_Style);
paint.setStrokeWidth(SkScalarHalf(SkIntToScalar(3)));
paint.setStyle(SkPaint::kFill_Style);
-
+
SkRect r;
SkScalar x,y;
x = 10;
@@ -44,7 +44,7 @@ protected:
canvas->drawRect(r, paint);
}
}
-
+
private:
typedef SampleView INHERITED;
};