diff options
author | John Glover <j@johnglover.net> | 2012-07-20 17:44:01 +0100 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-07-20 17:44:01 +0100 |
commit | c8eef2c4f0f9b22babc9aef9e0d4cef133475c9b (patch) | |
tree | 92123c31c9d14f7cf350b7ca067e2d8333096904 /src/sndobj/IFGram.h | |
parent | 9b19b241f69e2472a8d597038967abab18414172 (diff) | |
download | simpl-c8eef2c4f0f9b22babc9aef9e0d4cef133475c9b.tar.gz simpl-c8eef2c4f0f9b22babc9aef9e0d4cef133475c9b.tar.bz2 simpl-c8eef2c4f0f9b22babc9aef9e0d4cef133475c9b.zip |
[sndobj] Change input parameter 'mess' from char* to const char* in Set and Connect methods of analysis SndObjs.
Diffstat (limited to 'src/sndobj/IFGram.h')
-rw-r--r-- | src/sndobj/IFGram.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sndobj/IFGram.h b/src/sndobj/IFGram.h index c404190..609ebca 100644 --- a/src/sndobj/IFGram.h +++ b/src/sndobj/IFGram.h @@ -53,8 +53,8 @@ class IFGram : public PVA { ~IFGram(); - int Set(char* mess, double value); - int Connect(char* mess, void* input); + int Set(const char* mess, double value); + int Connect(const char* mess, void* input); void SetFFTSize(int fftsize); short DoProcess(); |