Skip to content

Commit

Permalink
Merge pull request #2324 from div72/qt-fix-signal
Browse files Browse the repository at this point in the history
qt: fix broken research wizard signal
  • Loading branch information
jamescowens authored Sep 11, 2021
2 parents b43a2b6 + deae386 commit 92f2da1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/researcher/researcherwizardmodepage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ void ResearcherWizardModePage::initializePage()
connect(ui->poolIconLabel, &ClickLabel::clicked, this, static_cast<void (ResearcherWizardModePage::*)()>(&ResearcherWizardModePage::selectPool));
connect(ui->poolRadioButton, &QRadioButton::toggled, this, static_cast<void (ResearcherWizardModePage::*)(bool)>(&ResearcherWizardModePage::selectPool));
connect(ui->investorIconLabel, &ClickLabel::clicked, this, static_cast<void (ResearcherWizardModePage::*)()>(&ResearcherWizardModePage::selectInvestor));
connect(ui->investorRadioButton, &QRadioButton::toggled, this, static_cast<void (ResearcherWizardModePage::*)()>(&ResearcherWizardModePage::selectInvestor));
connect(ui->investorRadioButton, &QRadioButton::toggled, this, static_cast<void (ResearcherWizardModePage::*)(bool)>(&ResearcherWizardModePage::selectInvestor));

if (m_researcher_model->configuredForInvestorMode()) {
selectInvestor();
Expand Down

0 comments on commit 92f2da1

Please sign in to comment.