From a5d013d841870ecf9dfe18e0071ed560a88cc6b8 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 26 Jun 2012 01:40:27 +0000 Subject: [PATCH] Some spelling mistake fixes from Debian. git-svn-id: svn://localhost/ardour2/branches/3.0@12936 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/about.cc | 2 +- libs/rubberband/src/FFT.cpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gtk2_ardour/about.cc b/gtk2_ardour/about.cc index a826510d5f..9b4f1477d6 100644 --- a/gtk2_ardour/about.cc +++ b/gtk2_ardour/about.cc @@ -202,7 +202,7 @@ static const char* translators[] = { static const char* gpl = X_("\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\ GNU GENERAL PUBLIC LICENSE\n\ Version 2, June 1991\n\ diff --git a/libs/rubberband/src/FFT.cpp b/libs/rubberband/src/FFT.cpp index 077c2c57a4..f04f6506d6 100644 --- a/libs/rubberband/src/FFT.cpp +++ b/libs/rubberband/src/FFT.cpp @@ -1201,7 +1201,7 @@ FFT::FFT(int size, int debugLevel) switch (m_method) { 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 d = new FFTs::D_Cross(size); #else @@ -1218,7 +1218,7 @@ FFT::FFT(int size, int debugLevel) } d = new FFTs::D_FFTW(size); #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 d = new FFTs::D_Cross(size); #else @@ -1236,7 +1236,7 @@ FFT::FFT(int size, int debugLevel) } d = new FFTs::D_KISSFFT(size); #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 d = new FFTs::D_Cross(size); #else