Browse Source

Fixed an IAA namespacing issue

tags/2021-05-28
tpoole 7 years ago
parent
commit
d654e442aa
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      modules/juce_audio_plugin_client/Standalone/juce_StandaloneFilterApp.cpp

+ 4
- 2
modules/juce_audio_plugin_client/Standalone/juce_StandaloneFilterApp.cpp View File

@@ -129,8 +129,12 @@ protected:
ScopedPointer<StandaloneFilterWindow> mainWindow;
};
} // namespace juce
#if JucePlugin_Build_Standalone && JUCE_IOS
using namespace juce;
bool JUCE_CALLTYPE juce_isInterAppAudioConnected()
{
if (auto holder = StandalonePluginHolder::getInstance())
@@ -156,6 +160,4 @@ Image JUCE_CALLTYPE juce_getIAAHostIcon (int size)
#endif
#endif
} // namespace juce
#endif

Loading…
Cancel
Save