1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-31 16:09:28 +02:00

Fix Windows warning: inconsistent DLL linkage between base & derived

This commit is contained in:
Paul Licameli 2017-05-23 13:06:50 -04:00
parent f0040b09f1
commit 4b2b0d9b91

View File

@ -250,7 +250,7 @@ class AUDACITY_DLL_API Track /* not final */ : public XMLTagHandler
bool IsSyncLockSelected() const;
};
class AudioTrack /* not final */ : public Track
class AUDACITY_DLL_API AudioTrack /* not final */ : public Track
{
public:
AudioTrack(const std::shared_ptr<DirManager> &projDirManager)
@ -265,7 +265,7 @@ public:
{ return false; }
};
class PlayableTrack /* not final */ : public AudioTrack
class AUDACITY_DLL_API PlayableTrack /* not final */ : public AudioTrack
{
public:
PlayableTrack(const std::shared_ptr<DirManager> &projDirManager)