From 07c639e41165da70aab5016adf1bf7133a418b31 Mon Sep 17 00:00:00 2001 From: Gary Scavone Date: Fri, 27 Dec 2013 11:30:37 -0800 Subject: 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. --- tests/teststops.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tests/teststops.cpp') diff --git a/tests/teststops.cpp b/tests/teststops.cpp index ab71dbd..b74a66e 100644 --- a/tests/teststops.cpp +++ b/tests/teststops.cpp @@ -141,7 +141,7 @@ int main( int argc, char *argv[] ) SLEEP( pausetime ); } } - catch ( RtError& e ) { + catch ( RtAudioError& e ) { e.printMessage(); goto cleanup; } @@ -168,7 +168,7 @@ int main( int argc, char *argv[] ) SLEEP( pausetime ); } } - catch ( RtError& e ) { + catch ( RtAudioError& e ) { e.printMessage(); goto cleanup; } @@ -193,7 +193,7 @@ int main( int argc, char *argv[] ) SLEEP( pausetime ); } } - catch ( RtError& e ) { + catch ( RtAudioError& e ) { e.printMessage(); goto cleanup; } @@ -222,7 +222,7 @@ int main( int argc, char *argv[] ) SLEEP( pausetime ); } } - catch ( RtError& e ) { + catch ( RtAudioError& e ) { e.printMessage(); goto cleanup; } @@ -253,7 +253,7 @@ int main( int argc, char *argv[] ) SLEEP( pausetime ); } } - catch ( RtError& e ) { + catch ( RtAudioError& e ) { e.printMessage(); goto cleanup; } -- cgit v1.2.3