1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-08 14:13:57 +01:00

Remove trailing spaces.

This commit is contained in:
benjamin.drung@gmail.com
2014-06-03 20:30:19 +00:00
parent d921c4969b
commit 277932dccb
380 changed files with 6489 additions and 6491 deletions

View File

@@ -27,16 +27,16 @@ class WaveTrack;
#include "../RealFFTf.h"
class EffectNoiseRemoval: public Effect {
public:
EffectNoiseRemoval();
virtual ~EffectNoiseRemoval();
virtual wxString GetEffectName() {
return wxString(_("Noise Removal..."));
}
virtual std::set<wxString> GetEffectCategories() {
std::set<wxString> result;
result.insert(wxT("http://audacityteam.org/namespace#NoiseRemoval"));
@@ -53,14 +53,14 @@ public:
else
return wxString(_("Removing Noise"));
}
virtual bool PromptUser();
virtual bool TransferParameters( Shuttle & shuttle );
virtual bool Init();
virtual bool CheckWhetherSkipEffect();
virtual bool Process();
private:
bool mDoProfile;
@@ -148,7 +148,7 @@ public:
void PopulateOrExchange(ShuttleGui & S);
bool TransferDataToWindow();
bool TransferDataFromWindow();
private:
// handlers
void OnGetProfile( wxCommandEvent &event );
@@ -156,7 +156,7 @@ private:
void OnPreview(wxCommandEvent &event);
void OnRemoveNoise( wxCommandEvent &event );
void OnCancel( wxCommandEvent &event );
void OnSensitivityText(wxCommandEvent & event);
void OnGainText(wxCommandEvent & event);
void OnFreqText(wxCommandEvent & event);