From 70375529cc0bed874356a3e48a87b62c10a3733f Mon Sep 17 00:00:00 2001 From: "reed@google.com" Date: Fri, 25 Jan 2013 14:52:11 +0000 Subject: doh: use *srcPtr instead of src (which is now obsolete) when we check for specialLine git-svn-id: http://skia.googlecode.com/svn/trunk@7392 2bbb7eff-a529-9590-31e7-b0007b416f81 --- src/effects/SkDashPathEffect.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/effects/SkDashPathEffect.cpp b/src/effects/SkDashPathEffect.cpp index ac0b5a1fd0..be73160fa9 100644 --- a/src/effects/SkDashPathEffect.cpp +++ b/src/effects/SkDashPathEffect.cpp @@ -250,7 +250,7 @@ bool SkDashPathEffect::filterPath(SkPath* dst, const SkPath& src, } SpecialLineRec lineRec; - bool specialLine = lineRec.init(src, dst, rec, fCount >> 1, fIntervalLength); + bool specialLine = lineRec.init(*srcPtr, dst, rec, fCount >> 1, fIntervalLength); SkPathMeasure meas(*srcPtr, false); -- cgit v1.2.3