Automation of LV2 plugin properties.
[ardour.git] / libs / ardour / ardour / pan_controllable.h
index 9abbec42ab82277fe9af408549410d514390a245..63ee9d3b8cbf64016f9b1d16f244a344864f14c5 100644 (file)
@@ -38,7 +38,11 @@ class LIBARDOUR_API PanControllable : public AutomationControl
 {
 public:
        PanControllable (Session& s, std::string name, Pannable* o, Evoral::Parameter param)
-               : AutomationControl (s, param, boost::shared_ptr<AutomationList>(new AutomationList(param)), name)
+               : AutomationControl (s,
+                                    param,
+                                    ParameterDescriptor(param),
+                                    boost::shared_ptr<AutomationList>(new AutomationList(param)),
+                                    name)
                , owner (o)
        {}