summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/ardour')
-rw-r--r--libs/ardour/ardour/buffer.h2
-rw-r--r--libs/ardour/ardour/buffer_set.h2
2 files changed, 2 insertions, 2 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.
*
diff --git a/libs/ardour/ardour/buffer_set.h b/libs/ardour/ardour/buffer_set.h
index b64cdb7b60..4db1c34557 100644
--- a/libs/ardour/ardour/buffer_set.h
+++ b/libs/ardour/ardour/buffer_set.h
@@ -85,7 +85,7 @@ public:
const ChanCount& count() const { return _count; }
ChanCount& count() { return _count; }
- void is_silent(bool yn);
+ void set_is_silent(bool yn);
void silence (framecnt_t nframes, framecnt_t offset);
bool is_mirror() const { return _is_mirror; }