MCPcopy Create free account
hub / github.com/audacity/audacity / StoreCustomPaths

Method StoreCustomPaths

libraries/lib-module-manager/PluginManager.cpp:915–922  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

913}
914
915void PluginManager::StoreCustomPaths(const PluginProvider& provider, const PluginPaths& paths)
916{
917 auto group = mSettings->BeginGroup(REGCUSTOMPATHS);
918 const auto key = GetID(&provider);
919 wxArrayString wxarr;
920 std::copy(paths.begin(), paths.end(), std::back_inserter(wxarr));
921 mSettings->Write(key, wxJoin(wxarr, ';'));
922}
923
924void PluginManager::SaveGroup(audacity::BasicSettings *pRegistry, PluginType type)
925{

Callers 1

CommitMethod · 0.80

Calls 6

GetIDFunction · 0.85
copyFunction · 0.85
BeginGroupMethod · 0.45
beginMethod · 0.45
endMethod · 0.45
WriteMethod · 0.45

Tested by

no test coverage detected