fix build break on sample app

Review URL: https://codereview.chromium.org/19000005

git-svn-id: http://skia.googlecode.com/svn/trunk@10011 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
edisonn@google.com 2013-07-11 15:40:31 +00:00
parent 444e25a66b
commit de36b69481

View File

@ -725,7 +725,7 @@ static SkString getSampleTitle(const SkViewFactory* sampleFactory) {
return title;
}
bool compareSampleTitle(const SkViewFactory* first, const SkViewFactory* second) {
static bool compareSampleTitle(const SkViewFactory* first, const SkViewFactory* second) {
return strcmp(getSampleTitle(first).c_str(), getSampleTitle(second).c_str()) < 0;
}