more changes flowing from a persistent MonitorSection object
[ardour.git] / gtk2_ardour / selectable.h
index ca316c6450e8a62127de41109351781e96db4909..05c213116d6f7552b9ce2150b1c4c009132828c7 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
@@ -24,7 +24,7 @@
 
 class Selectable : public virtual sigc::trackable
 {
-  public:
+public:
        Selectable() {
                _selected = false;
        }
@@ -37,11 +37,11 @@ class Selectable : public virtual sigc::trackable
                }
        }
 
-       bool get_selected() const {
+       virtual bool selected() const {
                return _selected;
        }
 
-  protected:
+protected:
        bool _selected;
 };