Browse Source

Mixer: Fix redundant operations in strip removal.

tags/non-daw-v1.2.0
Jonathan Moore Liles 11 years ago
parent
commit
d795a484f0
2 changed files with 2 additions and 1 deletions
  1. +0
    -1
      mixer/src/Mixer_Strip.C
  2. +2
    -0
      nonlib/JACK/Port.C

+ 0
- 1
mixer/src/Mixer_Strip.C View File

@@ -1242,7 +1242,6 @@ Mixer_Strip::command_move_right ( void )
void
Mixer_Strip::command_close ( void )
{
mixer->remove( this );
Fl::delete_widget( this );
}



+ 2
- 0
nonlib/JACK/Port.C View File

@@ -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…
Cancel
Save