remove const

This commit is contained in:
ZeldaZach 2024-12-04 21:29:19 -05:00
parent e2ffb242fa
commit 864d0f6f50
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -3442,7 +3442,7 @@ void Player::actPlay()
}
}
void Player::actHide() const
void Player::actHide()
{
auto *card = game->getActiveCard();
if (card) {

View file

@ -222,7 +222,7 @@ private slots:
void actFlowT();
void actSetAnnotation();
void actPlay();
void actHide() const;
void actHide();
void actPlayFacedown();
void actReveal(QAction *action);
void refreshShortcuts();