Mercurial > hg > svgui
diff widgets/PluginParameterBox.cpp @ 587:4806715f7a19
Seems to be a bad idea to use plain DEBUG symbol on OS/X (system wants it)
author | Chris Cannam |
---|---|
date | Tue, 14 Jun 2011 15:27:05 +0100 |
parents | f4960f8ce798 |
children | 1a0dfcbffaf1 |
line wrap: on
line diff
--- a/widgets/PluginParameterBox.cpp Tue Jun 14 14:48:29 2011 +0100 +++ b/widgets/PluginParameterBox.cpp Tue Jun 14 15:27:05 2011 +0100 @@ -258,7 +258,7 @@ newValue = min + ival * qtz; } -// DEBUG << "PluginParameterBox::dialChanged: newValue = " << newValue << endl; +// SVDEBUG << "PluginParameterBox::dialChanged: newValue = " << newValue << endl; QDoubleSpinBox *spin = m_params[identifier].spin; if (spin) { @@ -267,7 +267,7 @@ spin->blockSignals(false); } -// DEBUG << "setting plugin parameter \"" << identifier << "\" to value " << newValue << endl; +// SVDEBUG << "setting plugin parameter \"" << identifier << "\" to value " << newValue << endl; m_plugin->setParameter(identifier.toStdString(), newValue); @@ -352,7 +352,7 @@ dial->blockSignals(false); } - DEBUG << "setting plugin parameter \"" << identifier << "\" to value " << value << endl; + SVDEBUG << "setting plugin parameter \"" << identifier << "\" to value " << value << endl; m_plugin->setParameter(identifier.toStdString(), value);