clang-tidy: Apply modernize-redundant-void-arg everywhere (#6446)

This commit is contained in:
Levin Oehlmann
2022-06-23 21:27:23 +02:00
committed by GitHub
parent 420769a32d
commit 773310384b
38 changed files with 142 additions and 142 deletions

View File

@@ -161,8 +161,8 @@ BitInvader::BitInvader( InstrumentTrack * _instrument_track ) :
m_graph.setWaveToSine();
lengthChanged();
connect( &m_sampleLength, SIGNAL( dataChanged( ) ),
this, SLOT( lengthChanged( ) ), Qt::DirectConnection );
connect( &m_sampleLength, SIGNAL( dataChanged() ),
this, SLOT( lengthChanged() ), Qt::DirectConnection );
connect( &m_graph, SIGNAL( samplesChanged( int, int ) ),
this, SLOT( samplesChanged( int, int ) ) );