Mixer: Fix redundant operations in strip removal.
This commit is contained in:
parent
f6c0e48a50
commit
d795a484f0
|
@ -1242,7 +1242,6 @@ Mixer_Strip::command_move_right ( void )
|
|||
void
|
||||
Mixer_Strip::command_close ( void )
|
||||
{
|
||||
mixer->remove( this );
|
||||
Fl::delete_widget( this );
|
||||
}
|
||||
|
||||
|
|
|
@ -335,6 +335,8 @@ namespace JACK
|
|||
const char **
|
||||
Port::connections ( void )
|
||||
{
|
||||
ASSERT( _port, "Attempt to get connections of null port" );
|
||||
|
||||
return jack_port_get_connections( _port );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue