fix compilation bug in fixed pt
authorbsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Mon, 26 Mar 2012 15:33:05 +0000 (15:33 +0000)
committerbsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Mon, 26 Mar 2012 15:33:05 +0000 (15:33 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@3489 2bbb7eff-a529-9590-31e7-b0007b416f81

include/core/SkMatrix.h

index 3c3d105805c453dbcf0ca05b62fa53fd5a1a8a70..8c878c5708778b146f7e7bc7002f6116a4123582 100644 (file)
@@ -497,7 +497,7 @@ public:
 
 #ifdef SK_SCALAR_IS_FIXED
     friend bool operator==(const SkMatrix& a, const SkMatrix& b) {
-        return a->cheapEquals(b);
+        return a.cheapEqualTo(b);
     }
 #else
     friend bool operator==(const SkMatrix& a, const SkMatrix& b);