summaryrefslogtreecommitdiff
path: root/gtk2_ardour/selection.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-02-24 12:59:07 +0100
committerRobin Gareus <robin@gareus.org>2017-02-24 16:10:14 +0100
commit89c02f4fd7718935391b8fb292bb1b4f3034635e (patch)
tree34093028c9f09f3e2c103df470226819e25222ba /gtk2_ardour/selection.h
parent3780a9526e3eeafbde056df8038a4d9cda37216e (diff)
the daily dose of const'ness
Diffstat (limited to 'gtk2_ardour/selection.h')
-rw-r--r--gtk2_ardour/selection.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/selection.h b/gtk2_ardour/selection.h
index daa81ab1d6..959690b95d 100644
--- a/gtk2_ardour/selection.h
+++ b/gtk2_ardour/selection.h
@@ -113,10 +113,10 @@ class Selection : public sigc::trackable, public PBD::ScopedConnectionList
void dump_region_layers();
- bool selected (TimeAxisView*);
- bool selected (RegionView*);
- bool selected (ArdourMarker*);
- bool selected (ControlPoint*);
+ bool selected (TimeAxisView*) const;
+ bool selected (RegionView*) const;
+ bool selected (ArdourMarker*) const;
+ bool selected (ControlPoint*) const;
void set (std::list<Selectable*> const &);
void add (std::list<Selectable*> const &);