1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-23 22:51:23 +01:00

fix Windows build

This commit is contained in:
Paul Licameli
2017-06-25 13:19:44 -04:00
parent 3f670118c7
commit 30317efa03
3 changed files with 5 additions and 3 deletions

View File

@@ -416,7 +416,7 @@ void SpectrumPrefs::Rollback()
}
}
bool SpectrumPrefs::Preview()
void SpectrumPrefs::Preview()
{
if (!Validate())
return false;
@@ -487,6 +487,8 @@ bool SpectrumPrefs::Commit()
SpectrogramSettings *const pSettings = &SpectrogramSettings::defaults();
pSettings->SavePrefs();
}
return true;
}
bool SpectrumPrefs::ShowsPreviewButton()