fixed overload funcs and connect()

This commit is contained in:
Hane 2023-08-12 19:48:22 +02:00
commit a251b4cb6b
3 changed files with 4 additions and 4 deletions

View file

@ -111,6 +111,6 @@ void OverseerHandler::setEndpointWidgets(std::vector<EndpointWidget*> ews){
}
void OverseerHandler::updateMuteCallback(uint64_t idx, bool muted){
epwMuteFunc f = &EndpointWidget::updateMuteC;
epwMuteFunc f = &EndpointWidget::updateMute;
std::invoke(f, endpointWidgets.at(idx), muted);
}