Specify return type of lambda (amend e635571f2f)

This commit is contained in:
Robin Gareus 2022-10-09 15:34:46 +02:00
parent 7b4487699c
commit b42591fde1
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 1 additions and 1 deletions

View File

@ -4692,7 +4692,7 @@ ProcessorWindowProxy::ProcessorWindowProxy (string const & name, ProcessorBox* b
default:
break;
}
Glib::signal_idle ().connect (sigc::bind ([] (ProxyBase* s) { s->drop_window (); return false; }, self));
Glib::signal_idle ().connect (sigc::bind ([] (ProxyBase* s) -> bool { s->drop_window (); return false; }, self));
}, this, pi->type ()));
}
}