Fix build issue with overload?

This commit is contained in:
Lukas Brübach 2024-12-22 16:36:03 +01:00
parent 3fc20e985e
commit 2cb4409a6c
2 changed files with 2 additions and 2 deletions

View file

@ -864,7 +864,7 @@ void TabDeckEditor::updateBannerCardComboBox()
bannerCardComboBox->blockSignals(wasBlocked);
}
void TabDeckEditor::setBannerCard()
void TabDeckEditor::setBannerCard(int /* changedIndex */)
{
qDebug() << "Banner card was set to: " << bannerCardComboBox->currentText();
deckModel->getDeckList()->setBannerCard(bannerCardComboBox->currentText());

View file

@ -37,7 +37,7 @@ private slots:
void updateName(const QString &name);
void updateComments();
void updateBannerCardComboBox();
void setBannerCard();
void setBannerCard(int);
void updateHash();
void updateCardInfoLeft(const QModelIndex &current, const QModelIndex &previous);
void updateCardInfoRight(const QModelIndex &current, const QModelIndex &previous);