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

Remove some unnecessary declarations in class AudacityProject

This commit is contained in:
Paul Licameli
2019-04-30 07:10:19 -04:00
parent 390af96796
commit e227d4dfb1
2 changed files with 5 additions and 10 deletions

View File

@@ -440,6 +440,11 @@ long mixer_process(void *mixer, float **buffer, long n)
#endif // EXPERIMENTAL_SCOREALIGN
enum{
kAudacitySortByTime = (1 << 1),
kAudacitySortByName = (1 << 2),
};
//sort based on flags. see Project.h for sort flags
void DoSortTracks( AudacityProject &project, int flags )
{