1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Enforced more comprehensive const-correctness in the JUCE container classes

This commit is contained in:
Tom Poole 2019-05-24 16:56:24 +01:00
parent a988b90aff
commit a9a0f6b92f
35 changed files with 351 additions and 112 deletions

View file

@ -64,7 +64,7 @@ public:
helloWorldLabel.setColour (TextEditor::backgroundColourId, Colour (0x00000000));
addAndMakeVisible (quitButton);
quitButton.onClick = [this] { JUCEApplication::quit(); };
quitButton.onClick = [] { JUCEApplication::quit(); };
setSize (600, 300);
}