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

Method TransferDataFromWindow

src/effects/Repeat.cpp:74–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72}
73
74bool EffectRepeat::TransferDataFromWindow(EffectSettings &)
75{
76 if (!mUIParent->Validate())
77 {
78 return false;
79 }
80
81 long l;
82
83 mRepeatCount->GetValue().ToLong(&l);
84
85 repeatCount = (int) l;
86
87 return true;
88}
89
90void EffectRepeat::DisplayNewTime()
91{

Callers

nothing calls this directly

Calls 2

ValidateMethod · 0.45
GetValueMethod · 0.45

Tested by

no test coverage detected