summaryrefslogtreecommitdiff
path: root/gtk2_ardour/send_ui.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2006-08-25 01:07:15 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2006-08-25 01:07:15 +0000
commitce234f363e95c38fc92728e520bf5ba240a89aa7 (patch)
tree96ce8c4734bdd564ec1f2ad0c36bc32f0b108204 /gtk2_ardour/send_ui.cc
parent7e95f29ce95edf01d6d451f96fae03f3d3451ff8 (diff)
use shared_ptr<> for all region handling
git-svn-id: svn://localhost/ardour2/trunk@852 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/send_ui.cc')
-rw-r--r--gtk2_ardour/send_ui.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/send_ui.cc b/gtk2_ardour/send_ui.cc
index 9925ff51d4..897f5f3847 100644
--- a/gtk2_ardour/send_ui.cc
+++ b/gtk2_ardour/send_ui.cc
@@ -98,9 +98,9 @@ SendUI::outs_changed (IOChange change, void* ignored)
}
void
-SendUI::send_going_away (Redirect *ignored)
+SendUI::send_going_away ()
{
- ENSURE_GUI_THREAD (bind (mem_fun (*this, &SendUI::send_going_away), ignored));
+ ENSURE_GUI_THREAD (mem_fun (*this, &SendUI::send_going_away))
delete this;
}
@@ -143,9 +143,9 @@ SendUIWindow::~SendUIWindow ()
}
void
-SendUIWindow::send_going_away (Redirect *ignored)
+SendUIWindow::send_going_away ()
{
- ENSURE_GUI_THREAD(bind (mem_fun (*this, &SendUIWindow::send_going_away), ignored));
+ ENSURE_GUI_THREAD (mem_fun (*this, &SendUIWindow::send_going_away));
delete this;
}