Eliminate a string copy for @ fonts in the fonts collector

This commit is contained in:
Thomas Goyne 2014-06-29 10:10:46 -07:00
parent c50d80cf24
commit e53b2dab6b
1 changed files with 1 additions and 3 deletions

View File

@ -84,9 +84,7 @@ FontConfigFontFileLister::FontConfigFontFileLister(FontCollectorStatusCallback c
FontFileLister::CollectionResult FontConfigFontFileLister::GetFontPaths(std::string const& facename, int bold, bool italic, std::set<wxUniChar> const& characters) {
CollectionResult ret;
std::string family(facename);
if (family[0] == '@')
family.erase(0, 1);
std::string family = facename[0] == '@' ? facename.substr(1) : facename;
boost::to_lower(family);
int weight = bold == 0 ? 80 :