summaryrefslogtreecommitdiff
path: root/gtk2_ardour/selectable.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/selectable.h')
-rw-r--r--gtk2_ardour/selectable.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk2_ardour/selectable.h b/gtk2_ardour/selectable.h
index 2d31dbf62b..c22a1b54f6 100644
--- a/gtk2_ardour/selectable.h
+++ b/gtk2_ardour/selectable.h
@@ -37,10 +37,12 @@ class Selectable : public virtual sigc::trackable
}
}
- bool get_selected() const {
+ virtual bool selected() const {
return _selected;
}
+ virtual void show_selected() {}
+
protected:
bool _selected;
};