1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-10 08:33:36 +02:00

Fix a few new compiler warnings.

This commit is contained in:
v.audacity
2013-01-04 03:07:03 +00:00
parent 522aedbfcf
commit 56eabe24c6
3 changed files with 3 additions and 3 deletions

View File

@@ -106,7 +106,7 @@ wxString FileSelector(const wxChar *title,
{
if (filters[n].Contains(defaultExtension))
{
filterIndex = n;
filterIndex = (int)n; // Convert to int to avoid compiler warning, because we probably do not need many tens of thousands of filters.
break;
}
}