From d3ea70d8c41f497e8e170ef03047e45a48d67368 Mon Sep 17 00:00:00 2001 From: jules Date: Sun, 17 Mar 2013 18:22:03 +0000 Subject: [PATCH] AU name format fix. --- extras/Introjucer/Source/Project/jucer_AudioPluginModule.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extras/Introjucer/Source/Project/jucer_AudioPluginModule.h b/extras/Introjucer/Source/Project/jucer_AudioPluginModule.h index 0d9335b8c7..f23e6606de 100644 --- a/extras/Introjucer/Source/Project/jucer_AudioPluginModule.h +++ b/extras/Introjucer/Source/Project/jucer_AudioPluginModule.h @@ -517,7 +517,8 @@ namespace AUHelpers Project& project = exporter.getProject(); - addPlistDictionaryKey (dict, "name", getPluginName (project).toString()); + addPlistDictionaryKey (dict, "name", getPluginManufacturer (project).toString() + + ": " + getPluginName (project).toString()); addPlistDictionaryKey (dict, "description", getPluginDesc (project).toString()); addPlistDictionaryKey (dict, "factoryFunction", getPluginAUExportPrefix (project).toString() + "Factory"); addPlistDictionaryKey (dict, "manufacturer", getPluginManufacturerCode (project).toString().trim().substring (0, 4));