In order to clean code from LADSPA, a small bug fix patch has been done in the ProcessingTree.cxx file.<br>The fact is that whenever creating a new QTreeWidgetObject [1], two parameters must be provided. The second one is what will be the name of the item, and by default is stored on column 0.
<br>But, as LADSPA requires to store a description and a factory identifier, it was using a hidden column 1 to store the factory ID, and via #ifdef selecting which column to use to instantiate the object.<br>Now both CLAM plugins and LADSPA plugins use column 1, so no selection has to be made.
<br><br>[1] <a href="http://doc.trolltech.com/4.3/qtreewidgetitem.html">http://doc.trolltech.com/4.3/qtreewidgetitem.html</a><br>