small fix (code style)

This commit is contained in:
Volker Fischer 2011-01-25 18:35:51 +00:00
parent 61022721f7
commit 46235af2da

View File

@ -213,7 +213,9 @@ void CChannelFader::ResetSoloState()
// muted but all others, we simply have to uncheck the check box (make // muted but all others, we simply have to uncheck the check box (make
// sure the setChecked does not fire a signal) // sure the setChecked does not fire a signal)
pcbSolo->blockSignals ( true ); pcbSolo->blockSignals ( true );
pcbSolo->setChecked ( false ); {
pcbSolo->setChecked ( false );
}
pcbSolo->blockSignals ( false ); pcbSolo->blockSignals ( false );
} }
@ -229,7 +231,9 @@ void CChannelFader::SetOtherSoloState ( const bool bState )
// we do not want to fire a signal with the following set function // we do not want to fire a signal with the following set function
// -> block signals temporarily // -> block signals temporarily
pcbSolo->blockSignals ( true ); pcbSolo->blockSignals ( true );
pcbSolo->setChecked ( false ); {
pcbSolo->setChecked ( false );
}
pcbSolo->blockSignals ( false ); pcbSolo->blockSignals ( false );
} }