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

Method MakeEditor

src/effects/Echo.cpp:56–65  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

54
55
56std::unique_ptr<EffectEditor> EffectEcho::MakeEditor(
57 ShuttleGui & S, EffectInstance &, EffectSettingsAccess &access,
58 const EffectOutputs *) const
59{
60 auto& settings = access.Get();
61 auto& myEffSettings = GetSettings(settings);
62 auto result = std::make_unique<Editor>(*this, access, myEffSettings);
63 result->PopulateOrExchange(S);
64 return result;
65}
66
67
68void EffectEcho::Editor::PopulateOrExchange(ShuttleGui & S)

Callers

nothing calls this directly

Calls 3

GetSettingsFunction · 0.85
GetMethod · 0.45
PopulateOrExchangeMethod · 0.45

Tested by

no test coverage detected