| 904 | |
| 905 | |
| 906 | PluginPaths PluginManager::ReadCustomPaths(const PluginProvider& provider) |
| 907 | { |
| 908 | auto group = mSettings->BeginGroup(REGCUSTOMPATHS); |
| 909 | const auto key = GetID(&provider); |
| 910 | const auto paths = mSettings->Read(key, wxString{}); |
| 911 | const auto wxarr = wxSplit(paths, ';'); |
| 912 | return PluginPaths(wxarr.begin(), wxarr.end()); |
| 913 | } |
| 914 | |
| 915 | void PluginManager::StoreCustomPaths(const PluginProvider& provider, const PluginPaths& paths) |
| 916 | { |
no test coverage detected