Chromium Code Reviews

Unified Diff: samplecode/SampleUnitMapper.cpp

Issue 12480002: Fixing some warnings on Linux (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: samplecode/SampleUnitMapper.cpp
===================================================================
--- samplecode/SampleUnitMapper.cpp (revision 8005)
+++ samplecode/SampleUnitMapper.cpp (working copy)
@@ -141,7 +141,7 @@
return -1;
}
- virtual SkView::Click* onFindClickHandler(SkScalar x, SkScalar y) {
+ virtual SkView::Click* onFindClickHandler(SkScalar x, SkScalar y, unsigned) {
sugoi 2013/03/06 16:14:59 virtual function's signature did not fit base clas
fDragIndex = hittest(x, y);
return fDragIndex >= 0 ? new Click(this) : NULL;
}

Powered by Google App Engine