Skip to content

Commit 4c0a4cc

Browse files
committed
Updated juce
1 parent 974e23d commit 4c0a4cc

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Source/CommandLine.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ namespace
239239
bool isPluginArgument (juce::String arg)
240240
{
241241
juce::AudioPluginFormatManager formatManager;
242-
formatManager.addDefaultFormats();
242+
juce::addDefaultFormatsToManager (formatManager);
243243

244244
for (auto format : formatManager.getFormats())
245245
if (format->fileMightContainThisPluginType (arg))

Source/MainComponent.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ namespace
246246
MainComponent::MainComponent (Validator& v)
247247
: validator (v)
248248
{
249-
formatManager.addDefaultFormats();
249+
juce::addDefaultFormatsToManager (formatManager);
250250

251251
const auto tabCol = getLookAndFeel().findColour (juce::ResizableWindow::backgroundColourId);
252252
addAndMakeVisible (tabbedComponent);

Source/PluginTests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ PluginTests::PluginTests (const juce::String& fileOrIdentifier, Options opts)
5252
{
5353
jassert (fileOrIdentifier.isNotEmpty());
5454
jassert (juce::isPositiveAndNotGreaterThan (options.strictnessLevel, 10));
55-
formatManager.addDefaultFormats();
55+
juce::addDefaultFormatsToManager (formatManager);
5656
}
5757

5858
PluginTests::PluginTests (const juce::PluginDescription& desc, Options opts)

modules/juce

Submodule juce updated 1748 files

0 commit comments

Comments
 (0)