mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-07 04:10:08 +00:00
Standardised some lambda syntax
This commit is contained in:
parent
5b32ef4897
commit
4fcedf7be5
53 changed files with 138 additions and 138 deletions
|
|
@ -63,15 +63,15 @@ public:
|
|||
|
||||
addAndMakeVisible (launchButton);
|
||||
launchButton.setButtonText ("Launch Child Process");
|
||||
launchButton.onClick = [this]() { launchChildProcess(); };
|
||||
launchButton.onClick = [this] { launchChildProcess(); };
|
||||
|
||||
addAndMakeVisible (pingButton);
|
||||
pingButton.setButtonText ("Send Ping");
|
||||
pingButton.onClick = [this]() { pingChildProcess(); };
|
||||
pingButton.onClick = [this] { pingChildProcess(); };
|
||||
|
||||
addAndMakeVisible (killButton);
|
||||
killButton.setButtonText ("Kill Child Process");
|
||||
killButton.onClick = [this]() { killChildProcess(); };
|
||||
killButton.onClick = [this] { killChildProcess(); };
|
||||
|
||||
addAndMakeVisible (testResultsBox);
|
||||
testResultsBox.setMultiLine (true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue