comparison plugin/DSSIPluginInstance.cpp @ 83:b2067aff8cd6

* Fix crash in spectrogram layer when replacing model * Change sample player's sample path to a single sample directory. This makes it immune to OS path separator differences, and ensures it can reject configure calls that try to set a nonexistent directory. Reloading play parameters (e.g. sample program) should now work. * some win32 fixes.
author Chris Cannam
date Wed, 26 Apr 2006 16:00:13 +0000
parents 163f3428bbe0
children 97e085895524
comparison
equal deleted inserted replaced
82:bf42d8d63885 83:b2067aff8cd6
844 if (m_descriptor->LADSPA_Plugin && m_descriptor->LADSPA_Plugin->Label) { 844 if (m_descriptor->LADSPA_Plugin && m_descriptor->LADSPA_Plugin->Label) {
845 qm = std::string(m_descriptor->LADSPA_Plugin->Label) + ": "; 845 qm = std::string(m_descriptor->LADSPA_Plugin->Label) + ": ";
846 } 846 }
847 qm = qm + message; 847 qm = qm + message;
848 free(message); 848 free(message);
849
850 std::cerr << "DSSIPluginInstance::configure: warning: configure returned message: \"" << qm.toStdString() << "\"" << std::endl;
849 } 851 }
850 852
851 return qm; 853 return qm;
852 } 854 }
853 855