1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-19 09:01:15 +02:00

TrackKindEnum should be the name of the enum, not a variable decl.

This commit is contained in:
businessmanprogrammersteve
2010-02-13 02:16:47 +00:00
parent 4eb04322da
commit 818f949f4b

View File

@@ -104,7 +104,7 @@ class AUDACITY_DLL_API Track: public XMLTagHandler
MonoChannel = 2
};
enum
enum TrackKindEnum
{
None,
Wave,
@@ -114,7 +114,7 @@ class AUDACITY_DLL_API Track: public XMLTagHandler
Label,
Time,
All
} TrackKindEnum;
};
Track(DirManager * projDirManager);
Track(const Track &orig);