mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-22 16:03:13 -04:00
sed: s/( void )/(), s/FALSE/false/, s/TRUE/true
Replaced remaining occurences of old constants and superfluous "void"
on empty argument list of functions.
(cherry picked from commit 166701f9f3)
This commit is contained in:
@@ -70,7 +70,7 @@ PeakControllerDialog::~PeakControllerDialog()
|
||||
|
||||
|
||||
/*
|
||||
void effectView::displayHelp( void )
|
||||
void effectView::displayHelp()
|
||||
{
|
||||
QWhatsThis::showText( mapToGlobal( rect().bottomRight() ),
|
||||
whatsThis() );
|
||||
@@ -79,10 +79,10 @@ void effectView::displayHelp( void )
|
||||
|
||||
|
||||
|
||||
void effectView::closeEffects( void )
|
||||
void effectView::closeEffects()
|
||||
{
|
||||
m_subWindow->hide();
|
||||
m_show = TRUE;
|
||||
m_show = true;
|
||||
}
|
||||
*/
|
||||
|
||||
@@ -101,7 +101,7 @@ void PeakControllerDialog::paintEvent( QPaintEvent * )
|
||||
|
||||
|
||||
|
||||
void PeakControllerDialog::modelChanged( void )
|
||||
void PeakControllerDialog::modelChanged()
|
||||
{
|
||||
m_peakController = castModel<PeakController>();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user