~ubuntu-branches/ubuntu/vivid/midisnoop/vivid

« back to all changes in this revision

Viewing changes to src/engine.cpp

  • Committer: Package Import Robot
  • Author(s): Jaromír Mikeš
  • Date: 2014-06-09 20:50:45 UTC
  • Revision ID: package-import@ubuntu.com-20140609205045-g17o5avepxxxvzto
Tags: 0.1.2~repack0-3
* Removed hardening wrapper.
* Added patch to fix build with rtmidi 2.1.
* Bump Standards.
* Build against rtmidi 2.1.
* Added keywords to desktop file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include "engine.h"
26
26
#include "error.h"
27
27
 
 
28
// RtError was renamed to RtMidiError in rtmidi 2.1
 
29
typedef RtMidiError RtError;
 
30
 
28
31
// Static functions
29
32
 
30
33
void
56
59
        case RtMidi::UNIX_JACK:
57
60
            driverNames.append(tr("JACK Audio Connection Kit"));
58
61
            break;
59
 
        case RtMidi::WINDOWS_KS:
60
 
            driverNames.append(tr("Windows Kernel Streaming"));
61
 
            break;
62
62
        case RtMidi::WINDOWS_MM:
63
63
            driverNames.append(tr("Windows Multimedia MIDI"));
64
64
            break;