diff options
| author | Gary Scavone <gary@music.mcgill.ca> | 2013-12-27 11:30:37 -0800 |
|---|---|---|
| committer | Gary Scavone <gary@music.mcgill.ca> | 2013-12-27 11:30:37 -0800 |
| commit | 07c639e41165da70aab5016adf1bf7133a418b31 (patch) | |
| tree | 23134f770f593643c52f9ca458f06c23fc3d0873 /tests/testall.cpp | |
| parent | a16508efc3f1ce9dee8f8d760ed68626b34881df (diff) | |
Renamed RtError class to RtAudioError and embedded it in RtAudio.h.
Deleted RtError.h from distribution and renamed all references to
RtError in the documentation, test files, and Windows .dsp files.
The version number was incremented to 4.1.0 in anticipation of
the next release, as this change affects the API.
Diffstat (limited to 'tests/testall.cpp')
| -rw-r--r-- | tests/testall.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/testall.cpp b/tests/testall.cpp index f518a57..c8db735 100644 --- a/tests/testall.cpp +++ b/tests/testall.cpp @@ -160,7 +160,7 @@ int main( int argc, char *argv[] ) std::cout << "Playing again ... press <enter> to close the stream.\n"; std::cin.get( input ); } - catch ( RtError& e ) { + catch ( RtAudioError& e ) { e.printMessage(); goto cleanup; } @@ -180,7 +180,7 @@ int main( int argc, char *argv[] ) std::cout << "\nPlaying ... press <enter> to stop.\n"; std::cin.get( input ); } - catch ( RtError& e ) { + catch ( RtAudioError& e ) { e.printMessage(); goto cleanup; } @@ -216,7 +216,7 @@ int main( int argc, char *argv[] ) std::cout << "\nRunning ... press <enter> to stop.\n"; std::cin.get( input ); } - catch ( RtError& e ) { + catch ( RtAudioError& e ) { e.printMessage(); } |
