1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-11 14:04:29 +01:00

Clean up some issues with Effect abstract classes, primarily that the progress dialog had Stop and Cancel buttons that produced exactly the same results, i.e., Cancel, so I removed the Stop button.

This commit is contained in:
v.audacity
2010-09-02 02:40:17 +00:00
parent b451649e1b
commit c31e01e980
4 changed files with 15 additions and 18 deletions

View File

@@ -62,7 +62,7 @@ void EffectManager::RegisterEffect(Effect *f, int NewFlags)
int i;
for(i=0; i<len; i++)
if (name.CmpNoCase(Effect::StripAmpersand(mEffects[i]->GetEffectName())) < 0) {
mEffects.Insert(f, i);
mEffects.Insert(f, i);
break;
}
if (i==len)