From 0a9c38574cafd3e77234d220a18241025098bbb3 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 20 Sep 2007 00:23:14 +0000 Subject: Rename C++ signals to cleaner Gtkmm convention. git-svn-id: http://svn.drobilla.net/lad/ingen@734 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/gui/PatchWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/libs/gui/PatchWindow.cpp') diff --git a/src/libs/gui/PatchWindow.cpp b/src/libs/gui/PatchWindow.cpp index ceeff852..c3e9149f 100644 --- a/src/libs/gui/PatchWindow.cpp +++ b/src/libs/gui/PatchWindow.cpp @@ -227,8 +227,8 @@ PatchWindow::set_patch(SharedPtr patch, SharedPtr view) else _menu_destroy_patch->set_sensitive(true); - new_port_connection = patch->new_port_sig.connect(sigc::mem_fun(this, &PatchWindow::patch_port_added)); - removed_port_connection = patch->removed_port_sig.connect(sigc::mem_fun(this, &PatchWindow::patch_port_removed)); + new_port_connection = patch->signal_new_port.connect(sigc::mem_fun(this, &PatchWindow::patch_port_added)); + removed_port_connection = patch->signal_removed_port.connect(sigc::mem_fun(this, &PatchWindow::patch_port_removed)); show_all(); _enable_signal = true; -- cgit v1.2.1