summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-07-19 20:35:17 +0200
committerRobin Gareus <robin@gareus.org>2017-07-19 22:15:22 +0200
commit92a1d3619bfc94e649fbbc4b4cd12c3c89978d6b (patch)
treeadebcfde3134d218fb923274e66d446177f3eb05 /gtk2_ardour
parent9a70e72f3d404d70d5499eaa86b4d1a94ce43223 (diff)
Const'ness where const'ness is due
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/time_axis_view.cc4
-rw-r--r--gtk2_ardour/time_axis_view.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/time_axis_view.cc b/gtk2_ardour/time_axis_view.cc
index dbaaf0268d..58c9d44bc5 100644
--- a/gtk2_ardour/time_axis_view.cc
+++ b/gtk2_ardour/time_axis_view.cc
@@ -1272,11 +1272,11 @@ TimeAxisView::preset_height (Height h)
/** @return Child time axis views that are not hidden */
TimeAxisView::Children
-TimeAxisView::get_child_list ()
+TimeAxisView::get_child_list () const
{
Children c;
- for (Children::iterator i = children.begin(); i != children.end(); ++i) {
+ for (Children::const_iterator i = children.begin(); i != children.end(); ++i) {
if (!(*i)->hidden()) {
c.push_back(*i);
}
diff --git a/gtk2_ardour/time_axis_view.h b/gtk2_ardour/time_axis_view.h
index 7a06c26a64..0b3c6ea722 100644
--- a/gtk2_ardour/time_axis_view.h
+++ b/gtk2_ardour/time_axis_view.h
@@ -216,7 +216,7 @@ class TimeAxisView : public virtual AxisView
virtual StreamView* view () const { return 0; }
typedef std::vector<boost::shared_ptr<TimeAxisView> > Children;
- Children get_child_list ();
+ Children get_child_list () const;
static uint32_t preset_height (Height);