Generic MIDI control now saves+restores its state; PBD::ID now requires a buffer...
[ardour.git] / libs / ardour / ardour / panner.h
index 3091527e59b78b93884809405a7f6734b0f8b01f..0cb0c3dfaad79a6e1ce1bb4483a4368bcd31b2b7 100644 (file)
@@ -114,7 +114,7 @@ class StreamPanner : public sigc::trackable, public Stateful
        bool             _muted;
 
        struct PanControllable : public PBD::Controllable {
-           PanControllable (StreamPanner& p) : panner (p) {}
+           PanControllable (std::string name, StreamPanner& p) : Controllable (name), panner (p) {}
            
            StreamPanner& panner;