summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-08-03 16:13:50 +0000
committerCarl Hetherington <carl@carlh.net>2009-08-03 16:13:50 +0000
commit022513756a91b997e760c160916aebb48f7ed01a (patch)
tree6a343f260b362db98632b94c73dac87317233610 /gtk2_ardour
parenta7f4f660956250cc98cc519321ad5b8e715f9d0f (diff)
Patch from drmoore to fix mantis 2807 (crash on creating new return)
git-svn-id: svn://localhost/ardour2/branches/3.0@5459 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/processor_box.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/processor_box.cc b/gtk2_ardour/processor_box.cc
index 0ad9a969ef..ecc24772af 100644
--- a/gtk2_ardour/processor_box.cc
+++ b/gtk2_ardour/processor_box.cc
@@ -730,10 +730,10 @@ ProcessorBox::choose_return ()
}
/* let the user adjust the IO setup before creation */
- IOSelectorWindow *ios = new IOSelectorWindow (_session, retrn->output(), true);
+ IOSelectorWindow *ios = new IOSelectorWindow (_session, retrn->input(), true);
ios->show_all ();
- /* keep a reference to the send so it doesn't get deleted while
+ /* keep a reference to the return so it doesn't get deleted while
the IOSelectorWindow is doing its stuff */
_processor_being_created = retrn;