X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fselectable.h;h=2d31dbf62bd88a34959da664574f62941de24c58;hb=b5148d93d5a9e6949f82f8685cab50cb772f2b9d;hp=51fc5da027bafb62d5013dc336d0215e22b5558b;hpb=45d3ec1437cf661533bc7750c623865def4424df;p=ardour.git diff --git a/gtk2_ardour/selectable.h b/gtk2_ardour/selectable.h index 51fc5da027..2d31dbf62b 100644 --- a/gtk2_ardour/selectable.h +++ b/gtk2_ardour/selectable.h @@ -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,7 +34,6 @@ class Selectable : public virtual sigc::trackable virtual void set_selected (bool yn) { if (yn != _selected) { _selected = yn; - Selected (_selected); /* EMIT_SIGNAL */ } } @@ -42,9 +41,6 @@ class Selectable : public virtual sigc::trackable return _selected; } - /** Emitted when the selected status of this Selectable changes */ - sigc::signal Selected ; - protected: bool _selected; };