fix infinite recursion calling (non)virtual

git-svn-id: http://skia.googlecode.com/svn/trunk@8398 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
reed@google.com 2013-03-26 19:29:55 +00:00
parent ca5c841a64
commit 919e9c3477

View File

@ -85,7 +85,7 @@ SkTypeface* SkFontMgr::matchFamilyStyle(const char familyName[],
SkTypeface* SkFontMgr::matchFaceStyle(const SkTypeface* face,
const SkFontStyle& fs) {
return this->matchFaceStyle(face, fs);
return this->onMatchFaceStyle(face, fs);
}
SkTypeface* SkFontMgr::createFromData(SkData* data, int ttcIndex) {