diff options
author | Christian Glöckner <cgloeckner@freenet.de> | 2016-03-29 10:09:18 +0200 |
---|---|---|
committer | André Nusser <andre.nusser@googlemail.com> | 2016-03-31 17:35:47 +0200 |
commit | 0f18336bc2a597f2625a46ea714e838d03e340b2 (patch) | |
tree | 78f328863e70a875ca35db1a64beb18fa7e437cc /plugin/drumgizmo_plugin.h | |
parent | 53909b3a74e9c752d3405fda7bc63146b9abdc7a (diff) |
more consistent style of output engines' getters
Diffstat (limited to 'plugin/drumgizmo_plugin.h')
-rw-r--r-- | plugin/drumgizmo_plugin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/drumgizmo_plugin.h b/plugin/drumgizmo_plugin.h index 8cddef6..28a1b8f 100644 --- a/plugin/drumgizmo_plugin.h +++ b/plugin/drumgizmo_plugin.h @@ -141,8 +141,8 @@ private: void run(int ch, sample_t *samples, size_t nsamples) override; void post(size_t nsamples) override; - sample_t *getBuffer(int ch) override; - size_t getBufferSize() override; + sample_t *getBuffer(int ch) const override; + size_t getBufferSize() const override; protected: DrumGizmoPlugin& plugin; |