mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-01 16:39:30 +02:00
Fix Windows warning: inconsistent DLL linkage between base & derived
This commit is contained in:
parent
f0040b09f1
commit
4b2b0d9b91
@ -250,7 +250,7 @@ class AUDACITY_DLL_API Track /* not final */ : public XMLTagHandler
|
|||||||
bool IsSyncLockSelected() const;
|
bool IsSyncLockSelected() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
class AudioTrack /* not final */ : public Track
|
class AUDACITY_DLL_API AudioTrack /* not final */ : public Track
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
AudioTrack(const std::shared_ptr<DirManager> &projDirManager)
|
AudioTrack(const std::shared_ptr<DirManager> &projDirManager)
|
||||||
@ -265,7 +265,7 @@ public:
|
|||||||
{ return false; }
|
{ return false; }
|
||||||
};
|
};
|
||||||
|
|
||||||
class PlayableTrack /* not final */ : public AudioTrack
|
class AUDACITY_DLL_API PlayableTrack /* not final */ : public AudioTrack
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
PlayableTrack(const std::shared_ptr<DirManager> &projDirManager)
|
PlayableTrack(const std::shared_ptr<DirManager> &projDirManager)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user