summaryrefslogtreecommitdiff
path: root/libs/ardour/parameter_descriptor.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-06-19 09:52:11 +0200
committerRobin Gareus <robin@gareus.org>2017-06-21 18:12:14 +0200
commitfe83e1e2ed450814dfec0ffed7a2c2559c6fa8b6 (patch)
tree426b6d1e9f697d0f324f2904e617c199ef70d838 /libs/ardour/parameter_descriptor.cc
parent2627cd414c83bce07f6c2462ffd32b8989df3342 (diff)
Move logarithmic property into Evoral, add rangesteps
This allows complete mathematical description of a given parameter and parameter values. Semantic type abstraction is reserved for Ardour::ParameterDescriptor.
Diffstat (limited to 'libs/ardour/parameter_descriptor.cc')
-rw-r--r--libs/ardour/parameter_descriptor.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/libs/ardour/parameter_descriptor.cc b/libs/ardour/parameter_descriptor.cc
index f6460a514e..7acbb94772 100644
--- a/libs/ardour/parameter_descriptor.cc
+++ b/libs/ardour/parameter_descriptor.cc
@@ -43,7 +43,6 @@ ParameterDescriptor::ParameterDescriptor(const Evoral::Parameter& parameter)
, largestep(0)
, integer_step(parameter.type() >= MidiCCAutomation &&
parameter.type() <= MidiChannelPressureAutomation)
- , logarithmic(false)
, sr_dependent(false)
, min_unbound(0)
, max_unbound(0)
@@ -142,7 +141,6 @@ ParameterDescriptor::ParameterDescriptor()
, smallstep(0)
, largestep(0)
, integer_step(false)
- , logarithmic(false)
, sr_dependent(false)
, min_unbound(0)
, max_unbound(0)