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

Fix compilation warnings

This commit is contained in:
Paul Licameli
2015-06-10 02:04:07 -04:00
parent 79305db179
commit 162418ff07
5 changed files with 8 additions and 5 deletions

View File

@@ -1391,7 +1391,7 @@ void NyquistEffect::Parse(wxString line)
long v;
// Splits are restored by default. Set to 0 to prevent.
tokens[1].ToLong(&v);
mRestoreSplits = v;
mRestoreSplits = !!v;
return;
}
#endif