Skip to content

Commit

Permalink
🚧 conf-window: dont use deprecated signal
Browse files Browse the repository at this point in the history
  • Loading branch information
vnepogodin committed Nov 18, 2024
1 parent c0a0c8f commit 9fc8c8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/conf-window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ void ConfWindow::connect_all_checkboxes() noexcept {
};

for (auto* checkbox : checkbox_list) {
connect(checkbox, &QCheckBox::stateChanged, this, [this](std::int32_t) {
connect(checkbox, &QCheckBox::checkStateChanged, this, [this](Qt::CheckState) {
reset_patches_data_tab();
});
}
Expand Down

0 comments on commit 9fc8c8b

Please sign in to comment.