From f7a0143374d791c21c0173d57430d0cc0e2a36ee Mon Sep 17 00:00:00 2001 From: oparviai Date: Sun, 25 Jan 2009 13:41:18 +0000 Subject: [PATCH] Name semantics --- source/SoundStretch/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/SoundStretch/main.cpp b/source/SoundStretch/main.cpp index 3a0abe3..559d881 100644 --- a/source/SoundStretch/main.cpp +++ b/source/SoundStretch/main.cpp @@ -276,7 +276,7 @@ int main(const int nParams, const char *paramStr[]) WavInFile *inFile; WavOutFile *outFile; RunParameters *params; - SoundTouch SoundTouch; + SoundTouch soundTouch; fprintf(stderr, _helloText, SoundTouch::getVersionString()); @@ -296,10 +296,10 @@ int main(const int nParams, const char *paramStr[]) } // Setup the 'SoundTouch' object for processing the sound - setup(&SoundTouch, inFile, params); + setup(&soundTouch, inFile, params); // Process the sound - process(&SoundTouch, inFile, outFile); + process(&soundTouch, inFile, outFile); // Close WAV file handles & dispose of the objects delete inFile;