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 /doc/doxygen/playback.txt | |
| 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 'doc/doxygen/playback.txt')
| -rw-r--r-- | doc/doxygen/playback.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/doxygen/playback.txt b/doc/doxygen/playback.txt index c291f5a..cf182a6 100644 --- a/doc/doxygen/playback.txt +++ b/doc/doxygen/playback.txt @@ -52,7 +52,7 @@ int main() sampleRate, &bufferFrames, &saw, (void *)&data ); dac.startStream(); } - catch ( RtError& e ) { + catch ( RtAudioError& e ) { e.printMessage(); exit( 0 ); } @@ -65,7 +65,7 @@ int main() // Stop the stream dac.stopStream(); } - catch (RtError& e) { + catch (RtAudioError& e) { e.printMessage(); } |
