13
0

Const'ness where const'ness is due

This commit is contained in:
Robin Gareus 2017-07-19 20:35:17 +02:00
parent 9a70e72f3d
commit 92a1d3619b
2 changed files with 3 additions and 3 deletions

View File

@ -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);
}

View File

@ -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);