@@ -452,7 +452,7 @@ class IContainerBaseWithNamedChildren : public IContainerBase
452
452
{
453
453
public:
454
454
IContainerBaseWithNamedChildren (const IRECT& bounds)
455
- : IContainerBase(bounds){};
455
+ : IContainerBase(bounds) {};
456
456
~IContainerBaseWithNamedChildren () = default ;
457
457
458
458
protected:
@@ -494,7 +494,7 @@ class ModelInfoControl : public IContainerBaseWithNamedChildren
494
494
public:
495
495
ModelInfoControl (const IRECT& bounds, const IVStyle& style)
496
496
: IContainerBaseWithNamedChildren(bounds)
497
- , mStyle (style){};
497
+ , mStyle (style) {};
498
498
499
499
void ClearModelInfo ()
500
500
{
@@ -561,7 +561,7 @@ class OutputModeControl : public IVRadioButtonControl
561
561
public:
562
562
OutputModeControl (const IRECT& bounds, int paramIdx, const IVStyle& style, float buttonSize)
563
563
: IVRadioButtonControl(
564
- bounds, paramIdx, {}, " Output Mode" , style, EVShape::Ellipse, EDirection::Vertical, buttonSize){};
564
+ bounds, paramIdx, {}, " Output Mode" , style, EVShape::Ellipse, EDirection::Vertical, buttonSize) {};
565
565
566
566
void SetNormalizedDisable (const bool disable)
567
567
{
@@ -808,7 +808,7 @@ class NAMSettingsPageControl : public IContainerBaseWithNamedChildren
808
808
AboutControl (const IRECT& bounds, const IVStyle& style, const IText& text)
809
809
: IContainerBase(bounds)
810
810
, mStyle (style)
811
- , mText (text){};
811
+ , mText (text) {};
812
812
813
813
void OnAttached () override
814
814
{
0 commit comments