mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-03 03:30:06 +00:00
Reorganised some of the juce source tree folders. Added a new JUCE_DEPRECATED macro, and tested it by renaming Button::addButtonListener to Button::addListener for consistency with other widgets. Added Samplitude to the AudioHostType class. Fixed window maximising in win32.
This commit is contained in:
parent
c8799c9107
commit
7becff2aa4
169 changed files with 2140 additions and 2007 deletions
|
|
@ -217,7 +217,7 @@ public:
|
|||
if (hideAdvancedOptionsWithButton)
|
||||
{
|
||||
addAndMakeVisible (showAdvancedSettingsButton = new TextButton (TRANS("Show advanced settings...")));
|
||||
showAdvancedSettingsButton->addButtonListener (this);
|
||||
showAdvancedSettingsButton->addListener (this);
|
||||
}
|
||||
|
||||
type->scanForDevices();
|
||||
|
|
@ -408,7 +408,7 @@ public:
|
|||
{
|
||||
addAndMakeVisible (showUIButton = new TextButton (TRANS ("show this device's control panel"),
|
||||
TRANS ("opens the device's own control panel")));
|
||||
showUIButton->addButtonListener (this);
|
||||
showUIButton->addListener (this);
|
||||
}
|
||||
|
||||
resized();
|
||||
|
|
@ -434,7 +434,7 @@ public:
|
|||
if (setup.maxNumOutputChannels > 0)
|
||||
{
|
||||
addAndMakeVisible (testButton = new TextButton (TRANS ("Test")));
|
||||
testButton->addButtonListener (this);
|
||||
testButton->addListener (this);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue