mirror of
https://github.com/cookiengineer/audacity
synced 2026-01-12 15:45:54 +01:00
Clean up a few warnings
This commit is contained in:
@@ -32,8 +32,8 @@
|
||||
// Define keys, defaults, minimums, and maximums for the effect parameters
|
||||
//
|
||||
// Name Type Key Def Min Max Scale
|
||||
Param( Delay, float, XO("Delay"), 1.0, 0.001, FLT_MAX, 1 );
|
||||
Param( Decay, float, XO("Decay"), 0.5, 0.0, FLT_MAX, 1 );
|
||||
Param( Delay, float, XO("Delay"), 1.0f, 0.001f, FLT_MAX, 1.0f );
|
||||
Param( Decay, float, XO("Decay"), 0.5f, 0.0f, FLT_MAX, 1.0f );
|
||||
|
||||
EffectEcho::EffectEcho()
|
||||
{
|
||||
|
||||
@@ -1848,7 +1848,7 @@ void NyquistEffect::BuildEffectWindow(ShuttleGui & S)
|
||||
S.AddSpace(10, 10);
|
||||
|
||||
wxArrayString choices = wxStringTokenize(ctrl.label, wxT(","));
|
||||
wxChoice *item = S.Id(ID_Choice + i).AddChoice(wxT(""), wxT(""), &choices);
|
||||
S.Id(ID_Choice + i).AddChoice(wxT(""), wxT(""), &choices);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user