mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Standardised some lambda syntax
This commit is contained in:
parent
5b32ef4897
commit
4fcedf7be5
53 changed files with 138 additions and 138 deletions
|
|
@ -37,7 +37,7 @@ SidePanel::SidePanel (StringRef title, int width, bool positionOnLeft,
|
|||
|
||||
addAndMakeVisible (titleLabel);
|
||||
|
||||
dismissButton.onClick = [this]() { showOrHide (false); };
|
||||
dismissButton.onClick = [this] { showOrHide (false); };
|
||||
addAndMakeVisible (dismissButton);
|
||||
|
||||
Desktop::getInstance().addGlobalMouseListener (this);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue