From c8eef2c4f0f9b22babc9aef9e0d4cef133475c9b Mon Sep 17 00:00:00 2001 From: John Glover Date: Fri, 20 Jul 2012 17:44:01 +0100 Subject: [sndobj] Change input parameter 'mess' from char* to const char* in Set and Connect methods of analysis SndObjs. --- src/sndobj/FFT.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/sndobj/FFT.h') diff --git a/src/sndobj/FFT.h b/src/sndobj/FFT.h index f8aa97e..9b8c78e 100644 --- a/src/sndobj/FFT.h +++ b/src/sndobj/FFT.h @@ -75,8 +75,8 @@ class FFT : public SndObj { int GetFFTSize() { return m_fftsize; } int GetHopSize() { return m_hopsize; } void SetWindow(Table* window){ m_table = window;} - int Connect(char* mess, void* input); - int Set(char* mess, double value); + int Connect(const char* mess, void* input); + int Set(const char* mess, double value); void SetScale(double scale){ m_scale = scale; m_norm = m_fftsize/m_scale;} virtual void SetFFTSize(int fftsize); virtual void SetHopSize(int hopsize); -- cgit v1.2.3