# HG changeset patch # User Chris Cannam # Date 1386074139 0 # Node ID 47964f188bd9cb2a75ad5c3783a86db76950a392 # Parent 933b5aed341a626a9db4a26df97ed73468211db4 Ensure playStatusChanged gets connected to view manager diff -r 933b5aed341a -r 47964f188bd9 audioio/AudioCallbackPlaySource.cpp --- a/audioio/AudioCallbackPlaySource.cpp Tue Nov 26 14:14:25 2013 +0000 +++ b/audioio/AudioCallbackPlaySource.cpp Tue Dec 03 12:35:39 2013 +0000 @@ -89,6 +89,9 @@ connect(m_viewManager, SIGNAL(playSelectionModeChanged()), this, SLOT(playSelectionModeChanged())); + connect(this, SIGNAL(playStatusChanged(bool)), + m_viewManager, SLOT(playStatusChanged(bool))); + connect(PlayParameterRepository::getInstance(), SIGNAL(playParametersChanged(PlayParameters *)), this, SLOT(playParametersChanged(PlayParameters *)));