summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-11-14 15:01:38 +0000
committerCarl Hetherington <carl@carlh.net>2010-11-14 15:01:38 +0000
commit7a25fa1beb76b7148d4f96de5629d8b639aac9e7 (patch)
tree92ee146d69532de39ddaab649e94f5fb92ae02f9 /libs
parent91d3ab7cec9f4699b5f0080dd5cb39c2df598ee9 (diff)
const fix.
git-svn-id: svn://localhost/ardour2/branches/3.0@8025 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/pbd/pbd/sequence_property.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/pbd/pbd/sequence_property.h b/libs/pbd/pbd/sequence_property.h
index 7d94a4be6b..e01611a96f 100644
--- a/libs/pbd/pbd/sequence_property.h
+++ b/libs/pbd/pbd/sequence_property.h
@@ -229,7 +229,7 @@ class SequenceProperty : public PropertyBase
}
}
- Container rlist() { return _val; }
+ Container rlist() const { return _val; }
/* Wrap salient methods of Sequence
*/