| Index: include/effects/SkDashPathEffect.h
|
| diff --git a/include/effects/SkDashPathEffect.h b/include/effects/SkDashPathEffect.h
|
| index 0fd00d70afe8fa4fda6ecd9e36477aefde12b7eb..d3adeed99a6d2f4276225eb16ddd638fb662e543 100644
|
| --- a/include/effects/SkDashPathEffect.h
|
| +++ b/include/effects/SkDashPathEffect.h
|
| @@ -38,7 +38,7 @@ public:
|
| */
|
| static SkDashPathEffect* Create(const SkScalar intervals[], int count,
|
| SkScalar phase) {
|
| - return SkNEW_ARGS(SkDashPathEffect, (intervals, count, phase));
|
| + return new SkDashPathEffect(intervals, count, phase);
|
| }
|
| virtual ~SkDashPathEffect();
|
|
|
|
|