mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Build: Fix Windows DLL build, which requires inheriting publicly from AsyncUpdater
This commit is contained in:
parent
32bc7ea9ee
commit
83dcaf3c39
4 changed files with 4 additions and 4 deletions
|
|
@ -45,7 +45,7 @@ namespace juce
|
|||
|
||||
@tags{Audio}
|
||||
*/
|
||||
struct AAXClientExtensions
|
||||
struct JUCE_API AAXClientExtensions
|
||||
{
|
||||
virtual ~AAXClientExtensions() = default;
|
||||
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ namespace juce::detail
|
|||
{
|
||||
|
||||
class ConcreteScopedContentSharerImpl : public ScopedMessageBoxImpl,
|
||||
private AsyncUpdater
|
||||
public AsyncUpdater
|
||||
{
|
||||
public:
|
||||
static ScopedMessageBox show (std::unique_ptr<ScopedContentSharerInterface>&& native,
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ struct ScopedContentSharerInterface
|
|||
};
|
||||
|
||||
class TemporaryFilesDecorator : public ScopedContentSharerInterface,
|
||||
private AsyncUpdater
|
||||
public AsyncUpdater
|
||||
{
|
||||
public:
|
||||
explicit TemporaryFilesDecorator (Component* parentIn)
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ public:
|
|||
|
||||
//==============================================================================
|
||||
class ConcreteScopedMessageBoxImpl : public ScopedMessageBoxImpl,
|
||||
private AsyncUpdater
|
||||
public AsyncUpdater
|
||||
{
|
||||
public:
|
||||
static ScopedMessageBox show (std::unique_ptr<ScopedMessageBoxInterface>&& native,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue