summaryrefslogtreecommitdiff
path: root/muse2/muse/confmport.cpp
diff options
context:
space:
mode:
authorTim E. Real <termtech@rogers.com>2011-09-17 08:35:55 +0000
committerTim E. Real <termtech@rogers.com>2011-09-17 08:35:55 +0000
commit030457faadce72a099193617237d5b7dcc792c87 (patch)
tree330e09c5c0ef42d8baff8a9c15e98cb1170373c5 /muse2/muse/confmport.cpp
parent663b022ab88acc47a5df898aa8df10d2e6422ba1 (diff)
Fixed errors when ladspa plugins not found while loading.
Fixed forgotten bool to pointer conversion in some calls to song::addTrack, createSynthI.
Diffstat (limited to 'muse2/muse/confmport.cpp')
-rw-r--r--muse2/muse/confmport.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/muse2/muse/confmport.cpp b/muse2/muse/confmport.cpp
index 6e371d0e..724b5a51 100644
--- a/muse2/muse/confmport.cpp
+++ b/muse2/muse/confmport.cpp
@@ -1341,7 +1341,7 @@ void MPConfig::addInstanceClicked()
QTreeWidgetItem* item = synthList->currentItem();
if (item == 0)
return;
- SynthI *si = song->createSynthI(item->text(0), item->text(2), false); // Add at end of list.
+ SynthI *si = song->createSynthI(item->text(0), item->text(2)); // Add at end of list.
if(!si)
return;