Mercurial > hg > svcore
diff base/PlayParameters.cpp @ 117:c30728d5625c sv1-v0.9rc1
* Make vertical scale alignment modes work in note layer as well as time-value
layer, and several significant fixes to it
* Make it possible to draw notes properly on the note layer
* Show units (and frequencies etc in note layer's case) in the time-value and
note layer description boxes
* Minor fix to item edit dialog layout
* Some minor menu rearrangement
* Comment out a lot of debug output
* Add SV website and reference URLs to Help menu, and add code to (attempt to)
open them in the user's preferred browser
author | Chris Cannam |
---|---|
date | Fri, 12 May 2006 14:40:43 +0000 |
parents | bf42d8d63885 |
children | 41d64b873d87 |
line wrap: on
line diff
--- a/base/PlayParameters.cpp Thu May 11 15:02:14 2006 +0000 +++ b/base/PlayParameters.cpp Fri May 12 14:40:43 2006 +0000 @@ -41,7 +41,7 @@ void PlayParameters::setPlayMuted(bool muted) { - std::cerr << "PlayParameters: setPlayMuted(" << muted << ")" << std::endl; +// std::cerr << "PlayParameters: setPlayMuted(" << muted << ")" << std::endl; m_playMuted = muted; emit playMutedChanged(muted); emit playAudibleChanged(!muted); @@ -51,7 +51,7 @@ void PlayParameters::setPlayAudible(bool audible) { - std::cerr << "PlayParameters(" << this << "): setPlayAudible(" << audible << ")" << std::endl; +// std::cerr << "PlayParameters(" << this << "): setPlayAudible(" << audible << ")" << std::endl; setPlayMuted(!audible); } @@ -90,7 +90,7 @@ { if (m_playPluginConfiguration != configuration) { m_playPluginConfiguration = configuration; - std::cerr << "PlayParameters(" << this << "): setPlayPluginConfiguration to \"" << configuration.toStdString() << "\"" << std::endl; +// std::cerr << "PlayParameters(" << this << "): setPlayPluginConfiguration to \"" << configuration.toStdString() << "\"" << std::endl; emit playPluginConfigurationChanged(configuration); emit playParametersChanged(); }