summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/sound/AudioFileManager.cpp2
-rw-r--r--src/sound/AudioFileManager.h2
-rw-r--r--src/sound/SoundDriver.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/sound/AudioFileManager.cpp b/src/sound/AudioFileManager.cpp
index 90291d5..0628c92 100644
--- a/src/sound/AudioFileManager.cpp
+++ b/src/sound/AudioFileManager.cpp
@@ -414,7 +414,7 @@ AudioFileManager::setAudioPath(const std::string &path)
}
void
-AudioFileManager::testAudioPath() throw (BadAudioPathException)
+AudioFileManager::testAudioPath()
{
TQFileInfo info(m_audioPath.c_str());
if (!(info.exists() && info.isDir() && !info.isRelative() &&
diff --git a/src/sound/AudioFileManager.h b/src/sound/AudioFileManager.h
index abbf2c0..e260c9f 100644
--- a/src/sound/AudioFileManager.h
+++ b/src/sound/AudioFileManager.h
@@ -165,7 +165,7 @@ public:
// Throw if the current audio path does not exist or is not writable
//
- void testAudioPath() throw(BadAudioPathException);
+ void testAudioPath();
// Get a new audio filename at the audio record path
//
diff --git a/src/sound/SoundDriver.h b/src/sound/SoundDriver.h
index 84df63f..d99076c 100644
--- a/src/sound/SoundDriver.h
+++ b/src/sound/SoundDriver.h
@@ -98,7 +98,7 @@ public:
struct NoteOffEventCmp
{
- bool operator()(NoteOffEvent *nO1, NoteOffEvent *nO2)
+ bool operator()(NoteOffEvent *nO1, NoteOffEvent *nO2) const
{
return nO1->getRealTime() < nO2->getRealTime();
}