From b80448211a4ae53e0a5a0ec5d38774ba9060b3db Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Mon, 5 Aug 2024 11:18:00 +0200 Subject: Rename 'Selection' to 'Range' --- src/project.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/project.h') 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 #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; -- cgit v1.2.3