Fixed compiler warning

Tobydox' enum change (7a65687746) introduced a compiler warning about
unhandled switch() case. Fixed now.

Signed-off-by: Tobias Doerffel <tobias.doerffel@gmail.com>
This commit is contained in:
Achim Settelmeier
2009-06-01 16:31:26 +02:00
committed by Tobias Doerffel
parent 288756e30f
commit 00400dbfc0

View File

@@ -195,6 +195,8 @@ void MidiControlListener::act( EventAction _action )
tl->pos().setTicks( tl->loopEnd().getTicks() );
tl->pos().setCurrentFrame( 0 );
break;
case NumActions: // prevent compiler warnings
break;
}
}