1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-07 06:55:52 +01:00

Remove wxArray(Int|Long|Double) except where wxWidgets fns need it

This commit is contained in:
Paul Licameli
2018-02-02 14:49:46 -05:00
parent 080dd34e61
commit 8be1e8fdad
35 changed files with 214 additions and 212 deletions

View File

@@ -53,7 +53,7 @@ void ModulePrefs::GetAllModuleStatuses(){
// TODO: On an Audacity upgrade we should (?) actually untick modules.
// The old modules might be still around, and we do not want to use them.
mModules.Clear();
mStatuses.Clear();
mStatuses.clear();
mPaths.Clear();
@@ -73,7 +73,7 @@ void ModulePrefs::GetAllModuleStatuses(){
}
//wxLogDebug( wxT("Entry: %s Value: %i"), str, iStatus );
mModules.Add( str );
mStatuses.Add( iStatus );
mStatuses.push_back( iStatus );
mPaths.Add( fname );
}
bCont = gPrefs->GetNextEntry(str, dummy);