mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-08 12:42:03 +01:00
Clean up some dead code and MSVC warnings.
- Dead code from experiments in SelectionBar removed. - Many warnings about unused parameters fixed with WXUNUSED() - Many warnings about signed / unsigned comparisons cleaned up. - Several 'local variable declared but not used' warnings fixed.
This commit is contained in:
@@ -312,7 +312,7 @@ static void RecursivelyRemove(wxArrayString& filePathArray, int count, int bias,
|
||||
progress.create( _("Progress"), message );
|
||||
|
||||
auto nn = filePathArray.size();
|
||||
for (int i = 0; i < nn; i++) {
|
||||
for (unsigned int i = 0; i < nn; i++) {
|
||||
const wxChar *file = filePathArray[i].c_str();
|
||||
if (bFiles)
|
||||
::wxRemoveFile(file);
|
||||
|
||||
Reference in New Issue
Block a user