a reverb is a reverb is a reverb
[ardour.git] / gtk2_ardour / selectable.h
index 51fc5da027bafb62d5013dc336d0215e22b5558b..2ffac879291d46ea4767a564e22cdf4dbf71a3c6 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2004 Paul Davis 
+    Copyright (C) 2004 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -34,17 +34,13 @@ class Selectable : public virtual sigc::trackable
        virtual void set_selected (bool yn) {
                if (yn != _selected) {
                        _selected = yn;
-                       Selected (_selected); /* EMIT_SIGNAL */
                }
        }
 
-       bool get_selected() const {
+       virtual bool selected() const {
                return _selected;
        }
 
-       /** Emitted when the selected status of this Selectable changes */
-       sigc::signal<void, bool> Selected ;
-
   protected:
        bool _selected;
 };