mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Add a base clang-tidy configuration
This commit is contained in:
parent
0dfaa98e86
commit
9b041f3d74
73 changed files with 484 additions and 279 deletions
|
|
@ -504,11 +504,11 @@ void Label::textEditorReturnKeyPressed (TextEditor& ed)
|
|||
}
|
||||
}
|
||||
|
||||
void Label::textEditorEscapeKeyPressed (TextEditor& ed)
|
||||
void Label::textEditorEscapeKeyPressed ([[maybe_unused]] TextEditor& ed)
|
||||
{
|
||||
if (editor != nullptr)
|
||||
{
|
||||
jassertquiet (&ed == editor.get());
|
||||
jassert (&ed == editor.get());
|
||||
|
||||
editor->setText (textValue.toString(), false);
|
||||
hideEditor (true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue