summaryrefslogtreecommitdiff
path: root/src/project.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/project.cc')
-rw-r--r--src/project.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/project.cc b/src/project.cc
index 9cac537..b3b88a3 100644
--- a/src/project.cc
+++ b/src/project.cc
@@ -335,16 +335,16 @@ void Instrument::setThreshold(float threshold)
}
}
-Selections Instrument::getSelections() const
+Ranges Instrument::getRanges() const
{
- return selections;
+ return ranges;
}
-void Instrument::setSelections(const Selections& selections)
+void Instrument::setRanges(const Ranges& ranges)
{
{
Project::RAIIBulkUpdate bulkUpdate(project);
- this->selections = selections;
+ this->ranges = ranges;
}
}