More RtError updates in various project files.

This commit is contained in:
Gary Scavone
2014-04-11 09:44:49 -04:00
parent caf7d2f2eb
commit a239b58651
13 changed files with 39 additions and 36 deletions

View File

@@ -36,7 +36,7 @@ int main( int argc, char *argv[] )
try {
midiout = new RtMidiOut();
}
catch ( RtError& error ) {
catch ( RtMidiError& error ) {
error.printMessage();
exit(0);
}
@@ -48,7 +48,7 @@ int main( int argc, char *argv[] )
try {
midiout->openVirtualPort();
}
catch ( RtError& error ) {
catch ( RtMidiError& error ) {
error.printMessage();
goto cleanup;
}
@@ -62,7 +62,7 @@ int main( int argc, char *argv[] )
try {
midiout->openPort( port );
}
catch ( RtError& error ) {
catch ( RtMidiError& error ) {
error.printMessage();
goto cleanup;
}