X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fselectable.h;h=2d31dbf62bd88a34959da664574f62941de24c58;hb=7d7b787a284c5eef0675593dd23d853229287a83;hp=b52214c9c9610e14e5f4257f5ccd2bf2e09dc1db;hpb=79986643c0c904f6574bb5323e2233a43a9e622e;p=ardour.git diff --git a/gtk2_ardour/selectable.h b/gtk2_ardour/selectable.h index b52214c9c9..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 @@ -15,7 +15,6 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id$ */ #ifndef __ardour_gtk_selectable_h__ @@ -35,7 +34,6 @@ class Selectable : public virtual sigc::trackable virtual void set_selected (bool yn) { if (yn != _selected) { _selected = yn; - Selected (_selected); /* EMIT_SIGNAL */ } } @@ -43,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; };