Insert new LocationEditRow on location add, rather than rebuilding the whole VBox...
[ardour.git] / libs / ardour / processor.cc
index 2b12414eeca7f0553b672c4604d31983871de971..49a2faa7429495400beedd69a5592cdccb5c17a4 100644 (file)
@@ -61,13 +61,14 @@ const string Processor::state_node_name = "Processor";
 
 Processor::Processor(Session& session, const string& name)
        : SessionObject(session, name)
-       , AutomatableControls(session)
+       , Automatable (session)
        , _pending_active(false)
        , _active(false)
        , _next_ab_is_active(false)
        , _configured(false)
        , _gui(0)
        , _display_to_user (true)
+       , _pre_fader (false)
 {
 }
 
@@ -263,3 +264,8 @@ Processor::set_display_to_user (bool yn)
        _display_to_user = yn;
 }
 
+void
+Processor::set_pre_fader (bool p)
+{
+       _pre_fader = p;
+}