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/PortPropertiesWindow.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/PortPropertiesWindow.cpp')
-rw-r--r-- | src/libs/gui/PortPropertiesWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/gui/PortPropertiesWindow.cpp b/src/libs/gui/PortPropertiesWindow.cpp index 3d69e648..cf8dbd98 100644 --- a/src/libs/gui/PortPropertiesWindow.cpp +++ b/src/libs/gui/PortPropertiesWindow.cpp @@ -75,7 +75,7 @@ PortPropertiesWindow::init(ControlGroup* control, SharedPtr<PortModel> pm) _max_spinner->set_value(max); _max_spinner->signal_value_changed().connect(sigc::mem_fun(*this, &PortPropertiesWindow::max_changed)); - pm->metadata_update_sig.connect(sigc::mem_fun(this, &PortPropertiesWindow::metadata_update)); + pm->signal_metadata.connect(sigc::mem_fun(this, &PortPropertiesWindow::metadata_update)); _enable_signal = true; } |