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
|
|
@ -294,7 +294,7 @@ public:
|
|||
{
|
||||
if (undoable)
|
||||
{
|
||||
layout.perform (new SetImageKeepsPropAction (button, layout, newState), "change imagebutton proportion mode");
|
||||
layout.perform (std::make_unique<SetImageKeepsPropAction> (button, layout, newState), "change imagebutton proportion mode");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
@ -371,7 +371,7 @@ public:
|
|||
{
|
||||
if (undoable)
|
||||
{
|
||||
layout.perform (new SetImageOpacityAction (button, layout, role, opacity), "change imagebutton opacity");
|
||||
layout.perform (std::make_unique<SetImageOpacityAction> (button, layout, role, opacity), "change imagebutton opacity");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
@ -453,7 +453,7 @@ public:
|
|||
{
|
||||
if (undoable)
|
||||
{
|
||||
layout.perform (new SetImageColourAction (button, layout, role, colour), "change imagebutton colour");
|
||||
layout.perform (std::make_unique<SetImageColourAction> (button, layout, role, colour), "change imagebutton colour");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue