Skip to content

Commit

Permalink
Partial revert of dcfeb87 (back to deprecated API usage).
Browse files Browse the repository at this point in the history
  • Loading branch information
Goli4thus committed Aug 30, 2020
1 parent 4ae9502 commit 3242941
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dialogrenamebatch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ DialogRenameBatch::DialogRenameBatch(const QVector<VstBucket> &pVstBuckets)
connect(mButtonAccept, &QPushButton::pressed, this, &DialogRenameBatch::slotButtonAccept);
connect(mButtonCancel, &QPushButton::pressed, this, &DialogRenameBatch::slotButtonCancel);
connect(mLineEditPhrase, &QLineEdit::textChanged, this, &DialogRenameBatch::slotTextChanged);
connect(mButtonGroupMode, static_cast<void(QButtonGroup::*)(int)>(&QButtonGroup::idClicked), this, &DialogRenameBatch::slotModeChanged);
connect(mButtonGroupLocation, static_cast<void(QButtonGroup::*)(int)>(&QButtonGroup::idClicked), this, &DialogRenameBatch::slotLocationChanged);
connect(mButtonGroupMode, static_cast<void(QButtonGroup::*)(int)>(&QButtonGroup::buttonClicked), this, &DialogRenameBatch::slotModeChanged);
connect(mButtonGroupLocation, static_cast<void(QButtonGroup::*)(int)>(&QButtonGroup::buttonClicked), this, &DialogRenameBatch::slotLocationChanged);
}

void DialogRenameBatch::init(QVector<int> indices)
Expand Down

0 comments on commit 3242941

Please sign in to comment.