mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-31 03:00:05 +00:00
Standardised some lambda syntax
This commit is contained in:
parent
5b32ef4897
commit
4fcedf7be5
53 changed files with 138 additions and 138 deletions
|
|
@ -104,9 +104,9 @@ FileChooserDialogBox::FileChooserDialogBox (const String& name,
|
|||
setResizable (true, true);
|
||||
setResizeLimits (300, 300, 1200, 1000);
|
||||
|
||||
content->okButton.onClick = [this]() { okButtonPressed(); };
|
||||
content->cancelButton.onClick = [this]() { closeButtonPressed(); };
|
||||
content->newFolderButton.onClick = [this]() { createNewFolder(); };
|
||||
content->okButton.onClick = [this] { okButtonPressed(); };
|
||||
content->cancelButton.onClick = [this] { closeButtonPressed(); };
|
||||
content->newFolderButton.onClick = [this] { createNewFolder(); };
|
||||
|
||||
content->chooserComponent.addListener (this);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue