DCPStore: use std::string instead of slow Glib::ustring

This commit is contained in:
Ingo Weyrich
2019-07-12 12:56:47 +02:00
parent 3b78a5c227
commit 7257aee235
2 changed files with 13 additions and 19 deletions

View File

@@ -169,10 +169,10 @@ private:
std::vector<Glib::ustring> profileDir;
// these contain standard profiles from RT. keys are all in uppercase, file path is value
std::map<Glib::ustring, Glib::ustring> file_std_profiles;
std::map<std::string, Glib::ustring> file_std_profiles;
// Maps file name to profile as cache
mutable std::map<Glib::ustring, DCPProfile*> profile_cache;
mutable std::map<std::string, DCPProfile*> profile_cache;
};
}