mirror of
https://github.com/cookiengineer/audacity
synced 2026-04-26 07:53:42 +02:00
Compilability of old Noise Removal
This commit is contained in:
@@ -97,7 +97,7 @@ private:
|
|||||||
void FinishTrack();
|
void FinishTrack();
|
||||||
|
|
||||||
// Variables that only exist during processing
|
// Variables that only exist during processing
|
||||||
std::unique_ptr<WaveTrack> mOutputTrack;
|
std::shared_ptr<WaveTrack> mOutputTrack;
|
||||||
sampleCount mInSampleCount;
|
sampleCount mInSampleCount;
|
||||||
sampleCount mOutSampleCount;
|
sampleCount mOutSampleCount;
|
||||||
int mInputPos;
|
int mInputPos;
|
||||||
@@ -141,7 +141,7 @@ public:
|
|||||||
wxSizer *MakeNoiseRemovalDialog(bool call_fit = true,
|
wxSizer *MakeNoiseRemovalDialog(bool call_fit = true,
|
||||||
bool set_sizer = true);
|
bool set_sizer = true);
|
||||||
|
|
||||||
void PopulateOrExchange(ShuttleGui & S);
|
void PopulateOrExchange(ShuttleGui & S) override;
|
||||||
bool TransferDataToWindow() override;
|
bool TransferDataToWindow() override;
|
||||||
bool TransferDataFromWindow() override;
|
bool TransferDataFromWindow() override;
|
||||||
|
|
||||||
@@ -149,7 +149,7 @@ private:
|
|||||||
// handlers
|
// handlers
|
||||||
void OnGetProfile( wxCommandEvent &event );
|
void OnGetProfile( wxCommandEvent &event );
|
||||||
void OnKeepNoise( wxCommandEvent &event );
|
void OnKeepNoise( wxCommandEvent &event );
|
||||||
void OnPreview(wxCommandEvent &event);
|
void OnPreview(wxCommandEvent &event) override;
|
||||||
void OnRemoveNoise( wxCommandEvent &event );
|
void OnRemoveNoise( wxCommandEvent &event );
|
||||||
void OnCancel( wxCommandEvent &event );
|
void OnCancel( wxCommandEvent &event );
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user