diff options
Diffstat (limited to 'src/libs/gui/PatchTreeWindow.cpp')
-rw-r--r-- | src/libs/gui/PatchTreeWindow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/gui/PatchTreeWindow.cpp b/src/libs/gui/PatchTreeWindow.cpp index bdd293ac..595c83b8 100644 --- a/src/libs/gui/PatchTreeWindow.cpp +++ b/src/libs/gui/PatchTreeWindow.cpp @@ -68,7 +68,7 @@ PatchTreeWindow::PatchTreeWindow(BaseObjectType* cobject, void PatchTreeWindow::init(Store& store) { - store.new_object_sig.connect(sigc::mem_fun(this, &PatchTreeWindow::new_object)); + store.signal_new_object.connect(sigc::mem_fun(this, &PatchTreeWindow::new_object)); } @@ -115,8 +115,8 @@ PatchTreeWindow::add_patch(SharedPtr<PatchModel> pm) } } - pm->enabled_sig.connect(sigc::bind(sigc::mem_fun(this, &PatchTreeWindow::patch_enabled), pm->path())); - pm->disabled_sig.connect(sigc::bind(sigc::mem_fun(this, &PatchTreeWindow::patch_disabled), pm->path())); + pm->signal_enabled.connect(sigc::bind(sigc::mem_fun(this, &PatchTreeWindow::patch_enabled), pm->path())); + pm->signal_disabled.connect(sigc::bind(sigc::mem_fun(this, &PatchTreeWindow::patch_disabled), pm->path())); } |