mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fix warnings in StandaloneFilterWindow
This commit is contained in:
parent
c468a5dd3d
commit
c9f4949f47
1 changed files with 6 additions and 6 deletions
|
|
@ -163,10 +163,10 @@ public:
|
|||
{
|
||||
DialogWindow::LaunchOptions o;
|
||||
o.content.setOwned (new AudioDeviceSelectorComponent (deviceManager,
|
||||
processor->getNumInputChannels(),
|
||||
processor->getNumInputChannels(),
|
||||
processor->getNumOutputChannels(),
|
||||
processor->getNumOutputChannels(),
|
||||
processor->getTotalNumInputChannels(),
|
||||
processor->getTotalNumInputChannels(),
|
||||
processor->getTotalNumOutputChannels(),
|
||||
processor->getTotalNumOutputChannels(),
|
||||
true, false,
|
||||
true, false));
|
||||
o.content->setSize (500, 450);
|
||||
|
|
@ -196,8 +196,8 @@ public:
|
|||
if (settings != nullptr)
|
||||
savedState = settings->getXmlValue ("audioSetup");
|
||||
|
||||
deviceManager.initialise (processor->getNumInputChannels(),
|
||||
processor->getNumOutputChannels(),
|
||||
deviceManager.initialise (processor->getTotalNumInputChannels(),
|
||||
processor->getTotalNumOutputChannels(),
|
||||
savedState,
|
||||
true);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue