mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-04 06:07:15 -05:00
clang-tidy: Apply modernize-use-auto everywhere (#6480)
Note: clang-tidy was run with `--format-style=file`.
This commit is contained in:
@@ -85,9 +85,9 @@ PeakControllerEffectControlDialog::PeakControllerEffectControlDialog(
|
||||
m_absLed = new LedCheckBox( tr( "Absolute value" ), this );
|
||||
m_absLed->setModel( &_controls->m_absModel );
|
||||
|
||||
QVBoxLayout * mainLayout = new QVBoxLayout();
|
||||
QHBoxLayout * knobLayout = new QHBoxLayout();
|
||||
QHBoxLayout * ledLayout = new QHBoxLayout();
|
||||
auto mainLayout = new QVBoxLayout();
|
||||
auto knobLayout = new QHBoxLayout();
|
||||
auto ledLayout = new QHBoxLayout();
|
||||
|
||||
knobLayout->addWidget( m_baseKnob );
|
||||
knobLayout->addWidget( m_amountKnob );
|
||||
|
||||
Reference in New Issue
Block a user