summaryrefslogtreecommitdiff
path: root/libs/ardour/luaproc.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/luaproc.cc')
-rw-r--r--libs/ardour/luaproc.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/libs/ardour/luaproc.cc b/libs/ardour/luaproc.cc
index 58167e7f06..8cb5f66c1c 100644
--- a/libs/ardour/luaproc.cc
+++ b/libs/ardour/luaproc.cc
@@ -1003,18 +1003,6 @@ LuaProc::describe_parameter (Evoral::Parameter param)
return "??";
}
-void
-LuaProc::print_parameter (uint32_t param, char* buf, uint32_t len) const
-{
- if (buf && len) {
- if (param < parameter_count ()) {
- snprintf (buf, len, "%.3f", get_parameter (param));
- } else {
- strcat (buf, "0");
- }
- }
-}
-
boost::shared_ptr<ScalePoints>
LuaProc::parse_scale_points (luabridge::LuaRef* lr)
{