Get the filesystem representation of urls rather than an absolute url

This commit is contained in:
Thomas Goyne 2015-11-08 11:44:39 -08:00
parent 63bb585db6
commit 2527204515
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ void process_font(CollectionResult& ret, NSFontDescriptor *font, int bold, bool
}
}
ret.paths.push_back(url.absoluteString.UTF8String);
ret.paths.push_back(url.fileSystemRepresentation);
}
}