Some spelling mistake fixes from Debian.

git-svn-id: svn://localhost/ardour2/branches/3.0@12936 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2012-06-26 01:40:27 +00:00
parent 9dc7811147
commit a5d013d841
2 changed files with 4 additions and 4 deletions

View file

@ -202,7 +202,7 @@ static const char* translators[] = {
static const char* gpl = X_("\n\ static const char* gpl = X_("\n\
Ardour comes with NO WARRANTY. It is free software, and you are welcome to redistribute it\n\ Ardour comes with NO WARRANTY. It is free software, and you are welcome to redistribute it\n\
under the terms of the GNU Public License, shown below.\n\ under the terms of the GNU General Public License, shown below.\n\
\n\ \n\
GNU GENERAL PUBLIC LICENSE\n\ GNU GENERAL PUBLIC LICENSE\n\
Version 2, June 1991\n\ Version 2, June 1991\n\

View file

@ -1201,7 +1201,7 @@ FFT::FFT(int size, int debugLevel)
switch (m_method) { switch (m_method) {
case 0: case 0:
std::cerr << "FFT::FFT(" << size << "): WARNING: Selected implemention not available" << std::endl; std::cerr << "FFT::FFT(" << size << "): WARNING: Selected implementation not available" << std::endl;
#ifdef USE_BUILTIN_FFT #ifdef USE_BUILTIN_FFT
d = new FFTs::D_Cross(size); d = new FFTs::D_Cross(size);
#else #else
@ -1218,7 +1218,7 @@ FFT::FFT(int size, int debugLevel)
} }
d = new FFTs::D_FFTW(size); d = new FFTs::D_FFTW(size);
#else #else
std::cerr << "FFT::FFT(" << size << "): WARNING: Selected implemention not available" << std::endl; std::cerr << "FFT::FFT(" << size << "): WARNING: Selected implementation not available" << std::endl;
#ifdef USE_BUILTIN_FFT #ifdef USE_BUILTIN_FFT
d = new FFTs::D_Cross(size); d = new FFTs::D_Cross(size);
#else #else
@ -1236,7 +1236,7 @@ FFT::FFT(int size, int debugLevel)
} }
d = new FFTs::D_KISSFFT(size); d = new FFTs::D_KISSFFT(size);
#else #else
std::cerr << "FFT::FFT(" << size << "): WARNING: Selected implemention not available" << std::endl; std::cerr << "FFT::FFT(" << size << "): WARNING: Selected implementation not available" << std::endl;
#ifdef USE_BUILTIN_FFT #ifdef USE_BUILTIN_FFT
d = new FFTs::D_Cross(size); d = new FFTs::D_Cross(size);
#else #else