From: Paul Davis Date: Tue, 16 Aug 2011 14:20:09 +0000 (+0000) Subject: avoid compiler warnings about un-implemented MIDI functions (for now) X-Git-Tag: 3.0-alpha10~3 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=6a3ce666c6716ceb9378e508d6116f83c32957c7;p=ardour.git avoid compiler warnings about un-implemented MIDI functions (for now) git-svn-id: svn://localhost/ardour2/branches/3.0@9997 d708f5d6-7413-0410-9779-e7cbd77b26cf --- diff --git a/libs/surfaces/generic_midi/midifunction.cc b/libs/surfaces/generic_midi/midifunction.cc index 38252326d7..926ee95a89 100644 --- a/libs/surfaces/generic_midi/midifunction.cc +++ b/libs/surfaces/generic_midi/midifunction.cc @@ -133,6 +133,16 @@ MIDIFunction::execute () sscanf (_argument.c_str(), "%d", &rid); _ui->SelectByRID (rid); } + case TrackSetMute: + break; + case TrackSetSolo: + break; + case TrackSetSoloIsolate: + break; + case TrackSetGain: + break; + case TrackSetRecordEnable: + break; default: break; }