diff options
author | David Robillard <d@drobilla.net> | 2007-09-20 00:23:14 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-09-20 00:23:14 +0000 |
commit | 0a9c38574cafd3e77234d220a18241025098bbb3 (patch) | |
tree | bf4380ab3b4bb42d1eff4263d5e559d43a6ccbc4 /src/libs/gui/PatchWindow.cpp | |
parent | ad558bdafde7e40b5de79b47d8586aec53cf3f7e (diff) | |
download | ingen-0a9c38574cafd3e77234d220a18241025098bbb3.tar.gz ingen-0a9c38574cafd3e77234d220a18241025098bbb3.tar.bz2 ingen-0a9c38574cafd3e77234d220a18241025098bbb3.zip |
Rename C++ signals to cleaner Gtkmm convention.
git-svn-id: http://svn.drobilla.net/lad/ingen@734 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/gui/PatchWindow.cpp')
-rw-r--r-- | src/libs/gui/PatchWindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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<PatchModel> patch, SharedPtr<PatchView> 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; |