summaryrefslogtreecommitdiff
path: root/libs/ardour/track.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-07-27 14:09:16 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-07-27 14:09:16 +0000
commitece5093234e4c185cf536d2b4e5edfeb90622409 (patch)
treede566ed8a317eaac10b13c6e06a11ab3f68c97e7 /libs/ardour/track.cc
parentfbc946d60dbe68016abcc386932b35c4ef4ba1af (diff)
change Control::{set,get}_float to Control::{set,get}_double and make almost all Control-related stuff use double rather than random mixtures of float, double and some integer value ; make hans' program change stuff work quite a bit better (not finished yet) including keyboard edting of pgm change values
git-svn-id: svn://localhost/ardour2/branches/3.0@7514 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/track.cc')
-rw-r--r--libs/ardour/track.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/libs/ardour/track.cc b/libs/ardour/track.cc
index 145251a021..0e1248db49 100644
--- a/libs/ardour/track.cc
+++ b/libs/ardour/track.cc
@@ -129,17 +129,17 @@ Track::RecEnableControllable::RecEnableControllable (Track& s)
}
void
-Track::RecEnableControllable::set_value (float val)
+Track::RecEnableControllable::set_value (double val)
{
- bool bval = ((val >= 0.5f) ? true: false);
+ bool bval = ((val >= 0.5) ? true: false);
track.set_record_enabled (bval, this);
}
-float
+double
Track::RecEnableControllable::get_value (void) const
{
- if (track.record_enabled()) { return 1.0f; }
- return 0.0f;
+ if (track.record_enabled()) { return 1.0; }
+ return 0.0;
}
bool