queue/Listener: add noexcept

This commit is contained in:
Max Kellermann
2019-05-31 13:57:46 +02:00
parent 8fef4af7b2
commit 57de2470f1
3 changed files with 9 additions and 9 deletions

View File

@@ -115,19 +115,19 @@ Partition::BorderPause()
}
void
Partition::OnQueueModified()
Partition::OnQueueModified() noexcept
{
EmitIdle(IDLE_PLAYLIST);
}
void
Partition::OnQueueOptionsChanged()
Partition::OnQueueOptionsChanged() noexcept
{
EmitIdle(IDLE_OPTIONS);
}
void
Partition::OnQueueSongStarted()
Partition::OnQueueSongStarted() noexcept
{
EmitIdle(IDLE_PLAYER);
}