diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2024-08-05 11:18:00 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2024-08-05 11:18:00 +0200 |
commit | b80448211a4ae53e0a5a0ec5d38774ba9060b3db (patch) | |
tree | 8e800f135ca3e852a270cae45474bb0d6c448719 /src/project.h | |
parent | 14e637a8d015911c5c60b07fdb34b9ba091bdeb6 (diff) |
Rename 'Selection' to 'Range'
Diffstat (limited to 'src/project.h')
-rw-r--r-- | src/project.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/project.h b/src/project.h index 3e2b886..b21f089 100644 --- a/src/project.h +++ b/src/project.h @@ -32,7 +32,7 @@ #include <QString> #include "audioextractor.h" -#include "selection.h" +#include "range.h" class Project; class Instrument; @@ -105,8 +105,8 @@ public: float getThreshold() const; void setThreshold(float threshold); - Selections getSelections() const; - void setSelections(const Selections& selectios); + Ranges getRanges() const; + void setRanges(const Ranges& selectios); QString getPrefix() const; void setPrefix(const QString& prefix); @@ -134,7 +134,7 @@ private: float threshold{0.5f}; // Edit tab - Selections selections; + Ranges ranges; // Export tab QString prefix; |