@@ -1,13 +0,0 @@ | |||||
diff --git a/modules/juce_audio_processors/format_types/juce_LADSPAPluginFormat.cpp b/modules/juce_audio_processors/format_types/juce_LADSPAPluginFormat.cpp | |||||
index d528a27..05aa7e0 100644 | |||||
--- a/modules/juce_audio_processors/format_types/juce_LADSPAPluginFormat.cpp | |||||
+++ b/modules/juce_audio_processors/format_types/juce_LADSPAPluginFormat.cpp | |||||
@@ -26,7 +26,7 @@ | |||||
} // (juce namespace) | |||||
-#include <ladspa.h> | |||||
+#include "ladspa.h" | |||||
namespace juce | |||||
{ |
@@ -1,14 +1,14 @@ | |||||
diff --git a/modules/juce_audio_processors/processors/juce_AudioProcessor.h b/modules/juce_audio_processors/processors/juce_AudioProcessor.h | |||||
index 76ac472..c014ae2 100644 | |||||
--- a/modules/juce_audio_processors/processors/juce_AudioProcessor.h | |||||
+++ b/modules/juce_audio_processors/processors/juce_AudioProcessor.h | |||||
@@ -551,6 +551,11 @@ public: | |||||
diff --git a/modules/juce_audio_processors/processors/juce_AudioProcessor.h b/modules/juce_audio_processors/processors/juce_AudioProcessor.h | |||||
index 76ac472..c014ae2 100644 | |||||
--- a/modules/juce_audio_processors/processors/juce_AudioProcessor.h | |||||
+++ b/modules/juce_audio_processors/processors/juce_AudioProcessor.h | |||||
@@ -551,6 +551,11 @@ public: | |||||
virtual void numChannelsChanged(); | virtual void numChannelsChanged(); | ||||
//============================================================================== | //============================================================================== | ||||
+ /** LV2 specific calls, saving/restore as string. */ | + /** LV2 specific calls, saving/restore as string. */ | ||||
+ virtual String getStateInformationString () { return String::empty; } | + virtual String getStateInformationString () { return String::empty; } | ||||
+ virtual void setStateInformationString (const String& data) {} | |||||
+ virtual void setStateInformationString (const String&) {} | |||||
+ | + | ||||
+ //============================================================================== | + //============================================================================== | ||||
/** Adds a listener that will be called when an aspect of this processor changes. */ | /** Adds a listener that will be called when an aspect of this processor changes. */ | ||||
@@ -1,8 +1,8 @@ | |||||
diff --git a/modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp b/modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp | |||||
index 29df141..bc4b02a 100644 | |||||
--- a/modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp | |||||
+++ b/modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp | |||||
@@ -282,10 +282,6 @@ public: | |||||
diff --git a/modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp b/modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp | |||||
index 29df141..bc4b02a 100644 | |||||
--- a/modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp | |||||
+++ b/modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp | |||||
@@ -282,10 +282,6 @@ public: | |||||
setInitialDelay (filter->getLatencySamples()); | setInitialDelay (filter->getLatencySamples()); | ||||
programsAreChunks (true); | programsAreChunks (true); | ||||
@@ -13,7 +13,7 @@ index 29df141..bc4b02a 100644 | |||||
activePlugins.add (this); | activePlugins.add (this); | ||||
} | } | ||||
@@ -1166,8 +1162,10 @@ public: | |||||
@@ -1166,8 +1162,10 @@ public: | |||||
editorComp->addToDesktop (0, ptr); | editorComp->addToDesktop (0, ptr); | ||||
hostWindow = (HWND) ptr; | hostWindow = (HWND) ptr; | ||||
#elif JUCE_LINUX | #elif JUCE_LINUX | ||||
@@ -25,15 +25,3 @@ index 29df141..bc4b02a 100644 | |||||
#else | #else | ||||
hostWindow = attachComponentToWindowRef (editorComp, ptr, useNSView); | hostWindow = attachComponentToWindowRef (editorComp, ptr, useNSView); | ||||
#endif | #endif | ||||
diff --git a/modules/juce_audio_plugin_client/utility/juce_PluginUtilities.cpp b/modules/juce_audio_plugin_client/utility/juce_PluginUtilities.cpp | |||||
index 82e7e47..8400493 100644 | |||||
--- a/modules/juce_audio_plugin_client/utility/juce_PluginUtilities.cpp | |||||
+++ b/modules/juce_audio_plugin_client/utility/juce_PluginUtilities.cpp | |||||
@@ -31,7 +31,6 @@ | |||||
#include "AppConfig.h" | |||||
#include "../utility/juce_CheckSettingMacros.h" | |||||
-#include "juce_IncludeModuleHeaders.h" | |||||
#if _MSC_VER || JUCE_MINGW | |||||