small fix (code style)
This commit is contained in:
parent
61022721f7
commit
46235af2da
1 changed files with 6 additions and 2 deletions
|
@ -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 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue