mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-19 00:42:14 -07:00
Fix build issue with overload?
This commit is contained in:
parent
8fdf3cb95b
commit
3fc20e985e
1 changed files with 2 additions and 1 deletions
|
|
@ -103,7 +103,8 @@ void TabDeckEditor::createDeckDock()
|
|||
// Delay the update to avoid race conditions
|
||||
QTimer::singleShot(100, this, &TabDeckEditor::updateBannerCardComboBox);
|
||||
});
|
||||
connect(bannerCardComboBox, &QComboBox::currentIndexChanged, this, &TabDeckEditor::setBannerCard);
|
||||
connect(bannerCardComboBox, QOverload<int>::of(&QComboBox::currentIndexChanged), this,
|
||||
&TabDeckEditor::setBannerCard);
|
||||
|
||||
aIncrement = new QAction(QString(), this);
|
||||
aIncrement->setIcon(QPixmap("theme:icons/increment"));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue