summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/buffer.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-12-02 19:53:33 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-12-02 19:53:33 +0000
commit5aa4d95f5940991fcafc81e29fdd042c82ca6a66 (patch)
tree314b6043defb221846293b298f7efdaa4f23e680 /libs/ardour/ardour/buffer.h
parenta38df56f9727eff9fc836c88512074a5fbeeca59 (diff)
rename a Buffer/BufferSet method to be a little clearer as to its intent (is_silent(bool) => set_is_silent(bool))
git-svn-id: svn://localhost/ardour2/branches/3.0@10867 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/buffer.h')
-rw-r--r--libs/ardour/ardour/buffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/ardour/buffer.h b/libs/ardour/ardour/buffer.h
index 15e97ccc10..c6f6822519 100644
--- a/libs/ardour/ardour/buffer.h
+++ b/libs/ardour/ardour/buffer.h
@@ -64,7 +64,7 @@ public:
DataType type() const { return _type; }
bool silent() const { return _silent; }
- void is_silent(bool yn) { _silent = yn; }
+ void set_is_silent(bool yn) { _silent = yn; }
/** Reallocate the buffer used internally to handle at least @a size_t units of data.
*