summaryrefslogtreecommitdiff
path: root/libs/ardour/utils.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-05-16 03:20:57 +0000
committerCarl Hetherington <carl@carlh.net>2009-05-16 03:20:57 +0000
commit400d2a86aa728dffe92750fe39ae6cd214eeff35 (patch)
tree5627c3cc84ef35b088955117636f768c897692f8 /libs/ardour/utils.cc
parentace07c80a81a631eb8ff95155e5ace2751838809 (diff)
Remove preferences menu options that have been moved into one or other preferences dialog.
git-svn-id: svn://localhost/ardour2/branches/3.0@5085 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/utils.cc')
-rw-r--r--libs/ardour/utils.cc16
1 files changed, 0 insertions, 16 deletions
diff --git a/libs/ardour/utils.cc b/libs/ardour/utils.cc
index 052d583976..9565b4450f 100644
--- a/libs/ardour/utils.cc
+++ b/libs/ardour/utils.cc
@@ -427,22 +427,6 @@ meter_falloff_from_float (float val)
}
}
-float
-meter_hold_to_float (MeterHold hold)
-{
- switch (hold) {
- case MeterHoldOff:
- return 0.0f;
- case MeterHoldShort:
- return 40.0f;
- case MeterHoldMedium:
- return 100.0f;
- case MeterHoldLong:
- default:
- return 200.0f;
- }
-}
-
AutoState
ARDOUR::string_to_auto_state (std::string str)
{