1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-16 15:41:11 +02:00

All generator effects now use common Duration handling

(Also updated a few windows IDs to fit the pattern)
This commit is contained in:
Leland Lucius
2015-04-19 19:44:10 -05:00
parent cc0b4789a8
commit 5e27710495
11 changed files with 173 additions and 120 deletions

View File

@@ -93,8 +93,8 @@ public:
virtual ~EffectHostInterface() {};
virtual double GetDefaultDuration() = 0;
virtual double GetDuration() = 0;
virtual bool SetDuration(double seconds) = 0;
virtual double GetDuration(bool *isSelection = NULL) = 0;
virtual void SetDuration(double seconds) = 0;
virtual bool Apply() = 0;
virtual void Preview() = 0;