From 630cb459cbaa2397e75c5e102980cc32cc8ef47f Mon Sep 17 00:00:00 2001 From: Timur Doumler Date: Tue, 18 Aug 2015 11:03:14 +0100 Subject: [PATCH] Removed "Plugin AU SDK Path" from Project settings as it is not used anymore. --- extras/Introjucer/Source/Project/jucer_AudioPluginModule.h | 1 - extras/Introjucer/Source/Project/jucer_ProjectType.cpp | 3 --- 2 files changed, 4 deletions(-) diff --git a/extras/Introjucer/Source/Project/jucer_AudioPluginModule.h b/extras/Introjucer/Source/Project/jucer_AudioPluginModule.h index f2e9c9bcd9..3a20cc4f60 100644 --- a/extras/Introjucer/Source/Project/jucer_AudioPluginModule.h +++ b/extras/Introjucer/Source/Project/jucer_AudioPluginModule.h @@ -48,7 +48,6 @@ namespace Value getPluginSilenceInProducesSilenceOut (Project& project) { return project.getProjectValue ("pluginSilenceInIsSilenceOut"); } Value getPluginEditorNeedsKeyFocus (Project& project) { return project.getProjectValue ("pluginEditorRequiresKeys"); } Value getPluginVSTCategory (Project& project) { return project.getProjectValue ("pluginVSTCategory"); } - Value getPluginAUSDKLocation (Project& project) { return project.getProjectValue ("pluginAUSDKLocation"); } Value getPluginAUExportPrefix (Project& project) { return project.getProjectValue ("pluginAUExportPrefix"); } Value getPluginAUMainType (Project& project) { return project.getProjectValue ("pluginAUMainType"); } Value getPluginRTASCategory (Project& project) { return project.getProjectValue ("pluginRTASCategory"); } diff --git a/extras/Introjucer/Source/Project/jucer_ProjectType.cpp b/extras/Introjucer/Source/Project/jucer_ProjectType.cpp index d7dbd54385..ced7231b3d 100644 --- a/extras/Introjucer/Source/Project/jucer_ProjectType.cpp +++ b/extras/Introjucer/Source/Project/jucer_ProjectType.cpp @@ -266,9 +266,6 @@ public: props.add (new BooleanPropertyComponent (getPluginEditorNeedsKeyFocus (project), "Key Focus", "Plugin editor requires keyboard focus"), "Enable this if your plugin needs keyboard input - some hosts can be a bit funny about keyboard focus.."); - props.add (new TextPropertyComponent (getPluginAUSDKLocation (project), "Plugin AU SDK Path", 512, false), - "An optional path to the Apple AudioUnit SDK's 'CoreAudio' folder. Leave this blank to use the default location."); - props.add (new TextPropertyComponent (getPluginAUExportPrefix (project), "Plugin AU Export Prefix", 64, false), "A prefix for the names of exported entry-point functions that the component exposes - typically this will be a version of your plugin's name that can be used as part of a C++ token.");