remove reference "const int32_t&" -> const int32_t"
[ardour.git] / libs / ardour / ardour / plugin.h
index bc32d7c3e62846f9a363f4e3bac3e70ad7eefd6f..df4b512ef70404ed2f06688d17d9e16532f17c61 100644 (file)
@@ -225,23 +225,6 @@ class LIBARDOUR_API Plugin : public PBD::StatefulDestructible, public Latent
                return 0;
        }
 
-       /** Emitted when a Latency Changes
-        *
-        * (this cannot be part of ARDOUR::Latent because
-        * signals cannot be copy-constructed).
-        */
-       PBD::Signal2<void,framecnt_t, framecnt_t> LatencyChanged;
-
-       /* overload Latent::set_user_latency w/signal emission */
-       virtual void set_user_latency (framecnt_t val) {
-               bool changed = val != _user_latency;
-               framecnt_t old = effective_latency ();
-               _user_latency = val;
-               if (changed) {
-                       LatencyChanged (old, effective_latency ()); /* EMIT SIGNAL */
-               }
-       }
-
        /** the max possible latency a plugin will have */
        virtual framecnt_t max_latency () const { return 0; } // TODO = 0, require implementation